Update to use new IBM CLI commands (#6525)

* Update to use new IBM CLI commands

* Update tip for vlans
This commit is contained in:
Eric Van Norman 2020-02-21 09:19:51 -06:00 committed by GitHub
parent e62c16a6a4
commit 81c1b5afe3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -37,12 +37,12 @@ To prepare a cluster before manually installing Istio, proceed as follows:
{{< /tip >}}
{{< text bash >}}
$ ibmcloud ks cluster-create --zone <zone-name> --machine-type b3c.4x16 \
$ ibmcloud ks cluster create classic --zone <zone-name> --machine-type b3c.4x16 \
--workers 3 --name <cluster-name>
{{< /text >}}
{{< tip >}}
If you already have a private and a public VLAN, you can specify them in the above command
If you already have a private or a public VLAN, you must specify them in the above command
using the `--private-vlan` and `--public-vlan` options. Otherwise, they will be automatically created for you.
You can view your available VLANs by running `ibmcloud ks vlans --zone <zone-name>`.
{{< /tip >}}
@ -51,7 +51,7 @@ To prepare a cluster before manually installing Istio, proceed as follows:
set the `KUBECONFIG` environment variable as specified in the command output.
{{< text bash >}}
$ ibmcloud ks cluster-config <cluster-name>
$ ibmcloud ks cluster config --cluster <cluster-name>
{{< /text >}}
{{< warning >}}