Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Update help info #249

Merged
merged 1 commit into from
Sep 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
// Represents the "generate" command
var generateCmd = &cobra.Command{
Use: "generate",
Short: "Generate Kubernetes resources from App definition",
Short: "Generate Kubernetes resources from an app definition",
Run: func(cmd *cobra.Command, args []string) {
if err := ifFilesPassed(InputFiles); err != nil {
fmt.Println(err)
Expand Down
2 changes: 1 addition & 1 deletion cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ containers:
// initCmd represents the version command
var initCmd = &cobra.Command{
Use: "init",
Short: "Intialize kedge file",
Short: "Intialize Kedge file",
Run: func(cmd *cobra.Command, args []string) {
data := templateData{Name: name, Image: image, Ports: port}
if name != "" && image != "" {
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var (
// RootCmd represents the base command when called without any subcommands
var RootCmd = &cobra.Command{
Use: "kedge",
Short: "Define Kubernetes applications using Kubernetes constructs",
Short: "Kedge: Simple, Concise & Declarative Kubernetes Applications",
PersistentPreRun: func(cmd *cobra.Command, args []string) {

// Add extra logging when verbosity is passed
Expand Down