File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -124,3 +124,14 @@ helm install training-chart --version 0.1.0
124
124
export POD_NAME=$(kubectl get pods --namespace default -l "app=training-chart,release=plucking-butterfly" -o jsonpath="{.items[0].metadata.name}")
125
125
kubectl port-forward $POD_NAME 8080:80
126
126
# http://127.0.0.1:8080
127
+
128
+ ### istio ###
129
+ curl -L https://git.io/getLatestIstio | sh -
130
+ cd istio-0.4.0
131
+ # temporary istioctl export (if you are using zsh, edit .zshrc to inculde permanent export)
132
+ export PATH=$PWD/bin:$PATH
133
+ kubectl apply -f install/kubernetes/istio.yaml
134
+ kubectl get svc -n istio-system
135
+ kubectl get pods -n istio-system
136
+ # deploy app
137
+ kubectl create -f <(istioctl kube-inject -f <your-app-spec>.yaml)
You can’t perform that action at this time.
0 commit comments