Skip to content

docs: Update istio.md #6517

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ Installing Istio ingress controller in a Kubernetes cluster running Seldon Core
helm install istio-ingressgateway istio/gateway -n istio-system
```

1. Verify that Istio Ingress Gateway is installed:
2. Verify that Istio Ingress Gateway is installed:

```
kubectl get svc istio-ingressgateway -n istio-system
```

This should return details of the Istio Ingress Gateway, including the external IP address.

2. Verify that all Istio Pods are running:
3. Verify that all Istio Pods are running:

```
kubectl get pods -n istio-system
Expand All @@ -75,17 +75,7 @@ Installing Istio ingress controller in a Kubernetes cluster running Seldon Core
istiod-xxxxxxx-xxxxx 1/1 Running 0 2m
istio-ingressgateway-xxxxx 1/1 Running 0 2m
```
3. Inject Envoy sidecars into application Pods in the namespace `seldon-mesh`:

```
kubectl label namespace seldon-mesh istio-injection=enabled
```
4. Verify that the injection happens to the Pods in the namespace `seldon-mesh`:

```
kubectl get namespace seldon-mesh --show-labels
```
5. Find the IP address of the Seldon Core 2 instance running with Istio:
4. Find the IP address of the Seldon Core 2 instance running with Istio:

```
ISTIO_INGRESS=$(kubectl get svc seldon-mesh -n seldon-mesh -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
Expand Down
Loading