File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tutorials/deploy-istio-kapsule-proxy-protocol Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -143,14 +143,14 @@ spec:
143143EOF
144144```
145145
146- 2 . Run the follwing command to retrieve the IP of your load balancer and save it in the ` $LB_IP ` variable:
146+ 2 . Run the following command to retrieve the IP of your Load Balancer and save it in the ` $LB_IP ` variable:
147147 ``` bash
148148 export LB_IP=$( kubectl get svc -n istio-system istio-ingressgateway -o
149149 jsonpath=' {.status.loadBalancer.ingress[0].ip}' )
150150 echo $LB_IP
151151 ```
152152
153- 2 . Run the following command to do test before proxy forward is configured:
153+ 2 . Run the following command to do a test before proxy forward is configured:
154154 ``` bash
155155 curl -v http://$LB_IP /get
156156 ```
@@ -332,7 +332,7 @@ kubectl annotate -n istio-system services istio-ingressgateway \
332332# ## It may be necessary to restart the Istio IngressGateway Pods
333333Once you have added the configurations, you may need to restart the IngressGateway pods so that the changes to take effect.
334334
335- Run the following command to delete the existing pods using ` kubectl` . Kubernetes will spin up new ones automatically after you launched the command:
335+ Run the following command to delete the existing pods using ` kubectl` . Kubernetes will spin up new ones automatically after you launch the command:
336336` ` ` bash
337337kubectl delete pod -n istio-system -l istio=ingressgateway
338338` ` `
You can’t perform that action at this time.
0 commit comments