Skip to content

Commit

Permalink
add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
howardjohn committed Aug 17, 2022
1 parent 0f951b8 commit 2893896
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,3 +143,23 @@ Metric meanings:
|ready| Time from application container starting until kubelet reports readiness |
|full ready| Time from application container starting until the Pod spec is fully declared as "Ready". This may be high than `ready` due to latency in kubelet updating the Pod |
|complete| End to end time to completion|
## Dump
The `startup` command impersonates a pod over XDS and dumps the resulting XDS config to files.
The XDS is modified to point to the local files rather than dynamic XDS configuration.
Example usage:
```shell script
pilot-load dump --pod my-pod --namespace test -p localhost:15012 --out /tmp/envoy
```
Port 15012 is required to fetch certificates.
One this is done, envoy can be run locally:
```shell script
envoy -c /tmp/envoy/config.yaml
```

0 comments on commit 2893896

Please sign in to comment.