Merge pull request #5516 from justinsb/kops_set_fix_example

kops set: fix example
This commit is contained in:
k8s-ci-robot 2018-07-25 07:20:56 -07:00 committed by GitHub
commit 73e9638749
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ var (
setExample = templates.Examples(i18n.T(` setExample = templates.Examples(i18n.T(`
# Set cluster to run kubernetes version 1.10.0 # 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
`)) `))
) )

View File

@ -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 # 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 ### Options