Created
October 6, 2021 17:13
-
-
Save rdpetrusek/6b51fbf695ec9c95829bf0fe4b833bf6 to your computer and use it in GitHub Desktop.
Kubernetes, Istio, Cert Manager, and Let's Encrypt - install istio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # https://istio.io/latest/docs/setup/install/helm/ | |
| kubectl create namespace istio-system | |
| helm install istio-base manifests/charts/base -n istio-system | |
| sleep 5 | |
| helm install istiod manifests/charts/istio-control/istio-discovery -n istio-system | |
| sleep 5 | |
| helm install istio-ingress manifests/charts/gateways/istio-ingress -n istio-system |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment