Skip to content

Commit 4cc2600

Browse files
committed
patch
1 parent ce64c6a commit 4cc2600

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/auto-instrumentation-install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ provided, assume it refers to the operator or chart's namespace.
569569
- The operator webhooks must communicate with the Kubernetes API server. Errors related to webhook usage can often be found in the API server logs:
570570
- For self-managed clusters, check logs directly:
571571
```bash
572-
kubectl logs -n <api-server-namespace> -l component=kube-apiserver
572+
kubectl logs -n <apiserver-namespace> -l component=kube-apiserver
573573
```
574574
- For managed clusters, follow the platform-specific steps to enable and view API server logs:
575575
- [AKS: Monitor Logs](https://learn.microsoft.com/en-us/azure/aks/monitor-aks?tabs=cilium)
@@ -593,7 +593,7 @@ provided, assume it refers to the operator or chart's namespace.
593593
resides and the namespace where the Kubernetes apiserver resides.
594594
```bash
595595
kubectl get networkpolicy -n <operator-namespace>
596-
kubectl get networkpolicy -n <api-server-namespace>
596+
kubectl get networkpolicy -n <apiserver-namespace>
597597
```
598598
#### Checking Operator <-> API Server Connectivity steps
599599
Test Operator to API Server Connection
@@ -616,11 +616,11 @@ Test Operator to API Server Connection
616616
Test API Server to Operator Webhook Connection
617617
1. Create a `busybox` pod in the API Server's namespace:
618618
```bash
619-
kubectl run busybox-test --rm -it --restart=Never -n <api-server-namespace> --image=busybox -- /bin/sh
619+
kubectl run busybox-test --rm -it --restart=Never -n <apiserver-namespace> --image=busybox -- /bin/sh
620620
```
621621
2. Enter the `busybox` pod:
622622
```bash
623-
kubectl exec -it busybox-test -n <api-server-namespace> -- /bin/sh
623+
kubectl exec -it busybox-test -n <apiserver-namespace> -- /bin/sh
624624
```
625625
3. Attempt to contact the Operator's webhook:
626626
```bash

0 commit comments

Comments
 (0)