Skip to content

Commit

Permalink
Fix typo in execution.md
Browse files Browse the repository at this point in the history
Replaced kubesystem with kube-system in one command

Signed-off-by: Matteo Golinelli <[email protected]>
  • Loading branch information
Golim authored and jrfastab committed Oct 14, 2024
1 parent fc59f62 commit f3bd241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/en/docs/getting-started/execution.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ You can use this command to get the name of the Tetragon Pod that is on the same
Kubernetes node as the "xwing" Pod:

```shell
POD=$(kubectl -n kubesystem get pods -l 'app.kubernetes.io/name=tetragon' -o name --field-selector spec.nodeName=$(kubectl get pod xwing -o jsonpath='{.spec.nodeName}'))
POD=$(kubectl -n kube-system get pods -l 'app.kubernetes.io/name=tetragon' -o name --field-selector spec.nodeName=$(kubectl get pod xwing -o jsonpath='{.spec.nodeName}'))
```

Once you have the identified the matching Pod, then target it with a `kubectl
Expand Down

0 comments on commit f3bd241

Please sign in to comment.