Created
May 9, 2020 19:02
-
-
Save fai555/ba009a368c1f343f31a091d530043847 to your computer and use it in GitHub Desktop.
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
| kubectl create ns foo | |
| kubectl apply -f <(istioctl kube-inject -f samples/httpbin/httpbin.yaml) -n foo | |
| kubectl apply -f <(istioctl kube-inject -f samples/sleep/sleep.yaml) -n foo | |
| kubectl create ns bar | |
| kubectl apply -f <(istioctl kube-inject -f samples/httpbin/httpbin.yaml) -n bar | |
| kubectl apply -f <(istioctl kube-inject -f samples/sleep/sleep.yaml) -n bar | |
| kubectl create ns legacy | |
| kubectl apply -f samples/httpbin/httpbin.yaml -n legacy | |
| kubectl apply -f samples/sleep/sleep.yaml -n legacy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment