mirror of https://github.com/kubernetes/kops.git
fix typos
This commit is contained in:
parent
eda61d5981
commit
ac38ecde6e
|
@ -72,7 +72,7 @@ var (
|
|||
kops create ig --name=k8s-cluster.example.com node-example \
|
||||
--role node --subnet my-subnet-name
|
||||
|
||||
# Create an new ssh public key called admin.
|
||||
# Create a new ssh public key called admin.
|
||||
kops create secret sshpublickey admin -i ~/.ssh/id_rsa.pub \
|
||||
--name k8s-cluster.example.com --state s3://example.com
|
||||
`))
|
||||
|
|
|
@ -30,7 +30,7 @@ var (
|
|||
Create a secret`))
|
||||
|
||||
createSecretExample = templates.Examples(i18n.T(`
|
||||
# Create an new ssh public key called admin.
|
||||
# Create a new ssh public key called admin.
|
||||
kops create secret sshpublickey admin -i ~/.ssh/id_rsa.pub \
|
||||
--name k8s-cluster.example.com --state s3://example.com
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ var (
|
|||
Use update to modify it, this command will only create a new entry.`))
|
||||
|
||||
createSecretDockerconfigExample = templates.Examples(i18n.T(`
|
||||
# Create an new docker config.
|
||||
# Create a new docker config.
|
||||
kops create secret dockerconfig -f /path/to/docker/config.json \
|
||||
--name k8s-cluster.example.com --state s3://example.com
|
||||
# Replace an existing docker config secret.
|
||||
|
|
|
@ -34,7 +34,7 @@ var (
|
|||
key is not updated by this command.`))
|
||||
|
||||
createSecretSSHPublicKeyExample = templates.Examples(i18n.T(`
|
||||
# Create an new ssh public key called admin.
|
||||
# Create a new ssh public key called admin.
|
||||
kops create secret sshpublickey admin -i ~/.ssh/id_rsa.pub \
|
||||
--name k8s-cluster.example.com --state s3://example.com
|
||||
`))
|
||||
|
|
|
@ -89,7 +89,7 @@ var (
|
|||
|
||||
# Roll the k8s-cluster.example.com kops cluster,
|
||||
# only roll the node instancegroup,
|
||||
# use the new drain an validate functionality.
|
||||
# use the new drain and validate functionality.
|
||||
kops rolling-update cluster k8s-cluster.example.com --yes \
|
||||
--fail-on-validate-error="false" \
|
||||
--node-interval 8m \
|
||||
|
|
|
@ -41,7 +41,7 @@ kops create -f FILENAME [flags]
|
|||
kops create ig --name=k8s-cluster.example.com node-example \
|
||||
--role node --subnet my-subnet-name
|
||||
|
||||
# Create an new ssh public key called admin.
|
||||
# Create a new ssh public key called admin.
|
||||
kops create secret sshpublickey admin -i ~/.ssh/id_rsa.pub \
|
||||
--name k8s-cluster.example.com --state s3://example.com
|
||||
```
|
||||
|
|
|
@ -12,7 +12,7 @@ Create a secret
|
|||
### Examples
|
||||
|
||||
```
|
||||
# Create an new ssh public key called admin.
|
||||
# Create a new ssh public key called admin.
|
||||
kops create secret sshpublickey admin -i ~/.ssh/id_rsa.pub \
|
||||
--name k8s-cluster.example.com --state s3://example.com
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ kops create secret dockerconfig [flags]
|
|||
### Examples
|
||||
|
||||
```
|
||||
# Create an new docker config.
|
||||
# Create a new docker config.
|
||||
kops create secret dockerconfig -f /path/to/docker/config.json \
|
||||
--name k8s-cluster.example.com --state s3://example.com
|
||||
# Replace an existing docker config secret.
|
||||
|
|
|
@ -16,7 +16,7 @@ kops create secret sshpublickey [flags]
|
|||
### Examples
|
||||
|
||||
```
|
||||
# Create an new ssh public key called admin.
|
||||
# Create a new ssh public key called admin.
|
||||
kops create secret sshpublickey admin -i ~/.ssh/id_rsa.pub \
|
||||
--name k8s-cluster.example.com --state s3://example.com
|
||||
```
|
||||
|
|
|
@ -53,7 +53,7 @@ Note: terraform users will need to run all of the following commands from the sa
|
|||
|
||||
# Roll the k8s-cluster.example.com kops cluster,
|
||||
# only roll the node instancegroup,
|
||||
# use the new drain an validate functionality.
|
||||
# use the new drain and validate functionality.
|
||||
kops rolling-update cluster k8s-cluster.example.com --yes \
|
||||
--fail-on-validate-error="false" \
|
||||
--node-interval 8m \
|
||||
|
|
|
@ -57,7 +57,7 @@ kops rolling-update cluster [flags]
|
|||
|
||||
# Roll the k8s-cluster.example.com kops cluster,
|
||||
# only roll the node instancegroup,
|
||||
# use the new drain an validate functionality.
|
||||
# use the new drain and validate functionality.
|
||||
kops rolling-update cluster k8s-cluster.example.com --yes \
|
||||
--fail-on-validate-error="false" \
|
||||
--node-interval 8m \
|
||||
|
|
Loading…
Reference in New Issue