mirror of https://github.com/istio/istio.io.git
Added a warning in the ambient getting started guide (#13757)
* Added a warning in the ambient getting started guide This commit adds a warning for users using the gateway API with kind and ambient. Signed-off-by: leon <leon.nunes@solo.io> * Added a section to install MetalLB in kind Signed-off-by: leon <leon.nunes@solo.io> * Updated docs as per suggestions. * Fixed Lint errors Signed-off-by: leon <leon.nunes@solo.io> * Fixed spelling mistakes and reverted case of kind Signed-off-by: leon <leon.nunes@solo.io> * Added a - as per suggestion Signed-off-by: leon <leon.nunes@solo.io> * Reverted the tab spacing Signed-off-by: leon <leon.nunes@solo.io> * Changed warning to tip Signed-off-by: leon <leon.nunes@solo.io> --------- Signed-off-by: leon <leon.nunes@solo.io>
This commit is contained in:
parent
6ebf734a82
commit
e7ad8065e4
|
|
@ -186,6 +186,10 @@ Make sure the default namespace does not include the label `istio-injection=enab
|
|||
|
||||
1. Deploy an ingress gateway so you can access the bookinfo app from outside the cluster:
|
||||
|
||||
{{< tip >}}
|
||||
To get IP address assignment for `Loadbalancer` service types in `kind`, you may need to install a tool like [MetalLB](https://metallb.universe.tf/). Please consult [this guide](https://kind.sigs.k8s.io/docs/user/loadbalancer/) for more information.
|
||||
{{</ tip >}}
|
||||
|
||||
{{< tabset category-name="config-api" >}}
|
||||
|
||||
{{< tab name="Istio APIs" category-value="istio-apis" >}}
|
||||
|
|
|
|||
|
|
@ -68,9 +68,13 @@ Follow these instructions to prepare a kind cluster for Istio installation.
|
|||
Deleting cluster "istio-testing" ...
|
||||
{{< /text >}}
|
||||
|
||||
## Setup MetalLB for kind
|
||||
|
||||
kind does not have any built-in way to provide IP addresses to your `Loadbalancer` service types, to ensure IP address assignments to `Gateway` Services please consult [this guide](https://kind.sigs.k8s.io/docs/user/loadbalancer/) for more information.
|
||||
|
||||
## Setup Dashboard UI for kind
|
||||
|
||||
kind does not have a built in Dashboard UI like minikube. But you can still setup Dashboard, a web based Kubernetes UI, to view your cluster.
|
||||
kind does not have a built-in Dashboard UI like minikube. But you can still setup Dashboard, a web-based Kubernetes UI, to view your cluster.
|
||||
Follow these instructions to set up Dashboard for kind.
|
||||
|
||||
1. To deploy Dashboard, run the following command:
|
||||
|
|
|
|||
Loading…
Reference in New Issue