Skip to content

Instantly share code, notes, and snippets.

@rdpetrusek
Created October 6, 2021 17:13
Show Gist options
  • Select an option

  • Save rdpetrusek/6b51fbf695ec9c95829bf0fe4b833bf6 to your computer and use it in GitHub Desktop.

Select an option

Save rdpetrusek/6b51fbf695ec9c95829bf0fe4b833bf6 to your computer and use it in GitHub Desktop.
Kubernetes, Istio, Cert Manager, and Let's Encrypt - install istio
#!/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