Move code snippet into 'bash' section

This commit is contained in:
mandarjog 2017-05-11 10:14:16 -07:00 committed by GitHub
parent 4b4b5d7969
commit 0e0d366faf
1 changed files with 6 additions and 2 deletions

View File

@ -150,8 +150,12 @@ kubectl exec -it ${SERVER} -c app -- curl localhost:8080 | grep x-request-id
`istioctl kube-inject` injects additional containers into YAML
resource on the client _before_ submitting to the Kubernetes API
server. This will eventually be replaced by server-side injection via
admission controller. Use `kubectl get deployment service-one -o yaml` to
inspect the modified deployment and look for the following:
admission controller. Use
```bash
kubectl get deployment service-one -o yaml
```
to inspect the modified deployment and look for the following:
* A proxy container which includes the Envoy proxy and agent to manage
local proxy configuration.