Skip to content

Commit

Permalink
fix(cloud): Allow more than one port
Browse files Browse the repository at this point in the history
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
  • Loading branch information
craciunoiuc committed Aug 6, 2024
1 parent 20404bd commit 7f23a09
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 7f23a09

Please sign in to comment.