mirror of https://github.com/istio/istio.io.git
Add tip to kind platform setup instructions (#10852)
* Add tip to kind platform setup instructions * add cluster name * typo
This commit is contained in:
parent
b582a56aff
commit
428b518039
|
@ -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 service’s 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:
|
||||
|
||||
|
|
Loading…
Reference in New Issue