Skip to content

Commit 16dcfa5

Browse files
committed
doc(commands): istio installation guide
1 parent 2243e93 commit 16dcfa5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

commands.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,14 @@ helm install training-chart --version 0.1.0
124124
export POD_NAME=$(kubectl get pods --namespace default -l "app=training-chart,release=plucking-butterfly" -o jsonpath="{.items[0].metadata.name}")
125125
kubectl port-forward $POD_NAME 8080:80
126126
# 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)

0 commit comments

Comments
 (0)