From ae16b8ce13121f635593051f12f2e0b4cdad0d1c Mon Sep 17 00:00:00 2001 From: Daniel Heitmann Date: Mon, 29 Jan 2018 15:39:05 +0100 Subject: [PATCH] Fix formatting --- cmd/kops/create_ig.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kops/create_ig.go b/cmd/kops/create_ig.go index 33813cd287..0960bff4b8 100644 --- a/cmd/kops/create_ig.go +++ b/cmd/kops/create_ig.go @@ -98,7 +98,7 @@ func NewCmdCreateInstanceGroup(f *util.Factory, out io.Writer) *cobra.Command { } cmd.Flags().StringVar(&options.Role, "role", options.Role, "Type of instance group to create ("+strings.Join(allRoles, ",")+")") - cmd.Flags().StringSliceVar(&options.Subnets, "subnet", options.Subnets, "Subnet in which to create instance group. One of Availability Zone like eu-west-1a or a comma-separated list of multiple Availability Zones.") + cmd.Flags().StringSliceVar(&options.Subnets, "subnet", options.Subnets, "Subnet in which to create instance group. One of Availability Zone like eu-west-1a or a comma-separated list of multiple Availability Zones.") // DryRun mode that will print YAML or JSON cmd.Flags().BoolVar(&options.DryRun, "dry-run", options.DryRun, "If true, only print the object that would be sent, without sending it. This flag can be used to create a cluster YAML or JSON manifest.") cmd.Flags().StringVarP(&options.Output, "output", "o", options.Output, "Ouput format. One of json|yaml")