Skip to content

Commit

Permalink
fix(create): Allow more than one port (#1831)
Browse files Browse the repository at this point in the history
Reviewed-by: Alexander Jung <alex@unikraft.io>
Approved-by: Alexander Jung <alex@unikraft.io>
  • Loading branch information
nderjung committed Aug 6, 2024
2 parents 20404bd + 7f23a09 commit e654ddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cli/kraft/cloud/service/create/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ func NewCmd() *cobra.Command {
cmd, err := cmdfactory.New(&CreateOptions{}, cobra.Command{
Short: "Create a service",
Use: "create [FLAGS] EXTERNAL:INTERNAL[/HANDLER]",
Args: cobra.ExactArgs(1),
Args: cobra.MinimumNArgs(1),
Aliases: []string{"new"},
Long: "Create a service.",
Example: heredoc.Doc(`
Expand Down

0 comments on commit e654ddb

Please sign in to comment.