mirror of https://github.com/kubernetes/kops.git
Merge pull request #5516 from justinsb/kops_set_fix_example
kops set: fix example
This commit is contained in:
commit
73e9638749
|
|
@ -33,7 +33,7 @@ var (
|
|||
|
||||
setExample = templates.Examples(i18n.T(`
|
||||
# Set cluster to run kubernetes version 1.10.0
|
||||
kops set cluster k8s-cluster.example.com cluster.spec.kubernetesVersion=1.10.0
|
||||
kops set cluster k8s-cluster.example.com spec.kubernetesVersion=1.10.0
|
||||
`))
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ kops set does not update the cloud resources, to apply the changes use "kops upd
|
|||
|
||||
```
|
||||
# Set cluster to run kubernetes version 1.10.0
|
||||
kops set cluster k8s-cluster.example.com cluster.spec.kubernetesVersion=1.10.0
|
||||
kops set cluster k8s-cluster.example.com spec.kubernetesVersion=1.10.0
|
||||
```
|
||||
|
||||
### Options
|
||||
|
|
|
|||
Loading…
Reference in New Issue