Created
August 5, 2020 16:53
-
-
Save abhioncbr/903dc7d051c75203423f9aa579d306b1 to your computer and use it in GitHub Desktop.
This file contains 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
# 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