Skip to content

Commit

Permalink
wording
Browse files Browse the repository at this point in the history
  • Loading branch information
vordimous committed Jul 12, 2024
1 parent e7b88d6 commit 69bbc75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/how-tos/deploy-operate.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ The ingress controller will allow your ports to pass through, and you can config

### Get diagnostics from zilla pods

For every running zilla pod you will need to first copy the `/var/run/zilla` dir to make sure no additional files are written while it is compressed then compress the full directory to make it easier to copy.
For every running zilla pod you will need to first copy the `/var/run/zilla` directory to make sure no additional files are written while it is compressed then compress the full directory to make it easier to copy.

```bash:no-line-numbers
kubectl get pod \
Expand All @@ -112,7 +112,7 @@ kubectl get pod \
| xargs -I{} kubectl exec {} -n $NAMESPACE -c zilla -- sh -c "cp -r /var/run/zilla /tmp/zilla && tar czf /tmp/zilla.tar.gz /tmp/zilla && rm -rf /tmp/zilla"
```

Copy the compressed `/var/run/zilla` dir off of the pod into your local directory using the pod name.
Copy the compressed `/var/run/zilla` directory off of the pod into your local directory using the pod name.

```bash:no-line-numbers
kubectl get pod \
Expand Down

0 comments on commit 69bbc75

Please sign in to comment.