mirror of https://github.com/kubernetes/kops.git
Set SpecOverrideFlag to true by default
This commit is contained in:
parent
a5e5adb560
commit
4198df2fcd
|
@ -115,11 +115,13 @@ kops create cluster [CLUSTER] [flags]
|
|||
--out string Path to write any local output
|
||||
-o, --output string Output format. One of json or yaml. Used with the --dry-run flag.
|
||||
--project string Project to use (must be set on GCE)
|
||||
--set strings Directly set values in the spec
|
||||
--ssh-access strings Restrict SSH access to this CIDR. If not set, uses the value of the admin-access flag.
|
||||
--ssh-public-key string SSH public key to use
|
||||
--subnets strings Shared subnets to use
|
||||
--target string Valid targets: direct, terraform, cloudformation. Set this flag to terraform if you want kOps to generate terraform (default "direct")
|
||||
-t, --topology string Network topology for the cluster: public or private (default "public")
|
||||
--unset strings Directly unset values in the spec
|
||||
--utility-subnets strings Shared utility subnets to use
|
||||
--vpc string Shared VPC to use
|
||||
-y, --yes Specify --yes to immediately create the cluster
|
||||
|
|
|
@ -30,7 +30,9 @@ kops edit cluster [CLUSTER] [flags]
|
|||
### Options
|
||||
|
||||
```
|
||||
-h, --help help for cluster
|
||||
-h, --help help for cluster
|
||||
--set strings Directly set values in the spec
|
||||
--unset strings Directly unset values in the spec
|
||||
```
|
||||
|
||||
### Options inherited from parent commands
|
||||
|
|
|
@ -30,7 +30,9 @@ kops edit instancegroup INSTANCE_GROUP [flags]
|
|||
### Options
|
||||
|
||||
```
|
||||
-h, --help help for instancegroup
|
||||
-h, --help help for instancegroup
|
||||
--set strings Directly set values in the spec
|
||||
--unset strings Directly unset values in the spec
|
||||
```
|
||||
|
||||
### Options inherited from parent commands
|
||||
|
|
|
@ -57,7 +57,7 @@ var (
|
|||
// GoogleCloudBucketACL means the ACL will be set on a bucket when using GCS
|
||||
GoogleCloudBucketACL = new("GoogleCloudBucketAcl", Bool(false))
|
||||
// SpecOverrideFlag allows setting spec values on create
|
||||
SpecOverrideFlag = new("SpecOverrideFlag", Bool(false))
|
||||
SpecOverrideFlag = new("SpecOverrideFlag", Bool(true))
|
||||
// Spotinst toggles the use of Spotinst integration.
|
||||
Spotinst = new("Spotinst", Bool(false))
|
||||
// SpotinstOcean toggles the use of Spotinst Ocean instance group implementation.
|
||||
|
|
Loading…
Reference in New Issue