Skip to content

Commit

Permalink
Fix long line
Browse files Browse the repository at this point in the history
  • Loading branch information
optik-aper committed Oct 31, 2023
1 parent 81dd841 commit 5b399f5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmd/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,11 @@ func Kubernetes() *cobra.Command { //nolint: funlen
k8Create.Flags().StringP("label", "l", "", "label for your kubernetes cluster")
k8Create.Flags().StringP("region", "r", "", "region you want your kubernetes cluster to be located in")
k8Create.Flags().StringP("version", "v", "", "the kubernetes version you want for your cluster")
k8Create.Flags().Bool("high-avail", false, "(optional, default false) whether or not the cluster should be deployed with multiple, highly available, control planes")
k8Create.Flags().Bool(
"high-avail",
false,
"(optional, default false) whether or not the cluster should be deployed with multiple, highly available, control planes",
)
k8Create.Flags().StringArrayP(
"node-pools",
"n",
Expand Down

0 comments on commit 5b399f5

Please sign in to comment.