Skip to content

Instantly share code, notes, and snippets.

@abhioncbr
Created August 5, 2020 16:55
Show Gist options
  • Save abhioncbr/a78291c123fee0643c37f4c757da346b to your computer and use it in GitHub Desktop.
Save abhioncbr/a78291c123fee0643c37f4c757da346b to your computer and use it in GitHub Desktop.
# istioctl istio-operator dump manifests
istioctl operator dump [--hub(optional)] > operator-generated-manifest.yaml
# generate the manifest before installing Istio
istioctl manifest generate > istio-generated-manifest.yaml
# apply generated manifests
kubectl apply -f operator-generated-manifest.yaml
kubectl apply -f istio-generated-manifest.yaml
# in-case using Kustomize, example manifest just below.
kustomize build <kustomize-file-manifest.yaml> | kubectl apply -f -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment