Add tip to kind platform setup instructions (#10852)

* Add tip to kind platform setup instructions

* add cluster name

* typo
This commit is contained in:
Frank Budinsky 2022-02-03 16:05:55 -05:00 committed by GitHub
parent b582a56aff
commit 428b518039
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 1 deletions

View File

@ -27,7 +27,18 @@ Follow these instructions to prepare a kind cluster for Istio installation.
$ kind create cluster --name istio-testing
{{< /text >}}
`--name` is used to assign a specific name to the cluster. By default, the cluster will be given the name `kind`.
`--name` is used to assign a specific name to the cluster. By default, the cluster will be given the name "kind".
{{< tip >}}
You can use the following command to create a `kind` cluster with an associated external load balancer.
Otherwise you will need to access gateways and other k8s loadbalancer-type services using the services node port,
because `kind` does not provide an external loadbalancer by default.
{{< text bash >}}
$ @samples/kind-lb/setupkind.sh@ --cluster-name istio-testing
{{< /text >}}
{{< /tip >}}
1. To see the list of kind clusters, use the following command: