Skip to content

Commit dca6b4b

Browse files
committed
CP/DP Split: update a few more container references (#3359)
1 parent 5d55b02 commit dca6b4b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ A clear and concise description of what you expected to happen.
2424
* Version of Kubernetes
2525
* Kubernetes platform (e.g. Mini-kube or GCP)
2626
* Details on how you expose the NGINX Gateway Fabric Pod (e.g. Service of type LoadBalancer or port-forward)
27-
* Logs of NGINX container: `kubectl -n nginx-gateway logs -l app=nginx-gateway -c nginx`
28-
* NGINX Configuration: `kubectl -n nginx-gateway exec <gateway-pod> -c nginx -- nginx -T`
27+
* Logs of NGINX container: `kubectl -n <nginx-deployment-namespace> logs deployments/<nginx-deployment>`
28+
* NGINX Configuration: `kubectl -n <nginx-deployment-namespace> exec -it deployments/<nginx-deployment> -- nginx -T`
2929

3030
**Additional context**
3131
Add any other context about the problem here. Any log files you want to share.

docs/developer/testing.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,19 @@ Follow the steps below for manual testing:
6969
- Logs of the `nginx-gateway` container. Look out for unexpected error logs or panics.
7070

7171
```shell
72-
kubectl -n nginx-gateway logs <ngf-pod-name> -c nginx-gateway
72+
kubectl -n nginx-gateway logs <ngf-pod-name>
7373
```
7474

7575
- Logs of the `nginx` container. Look for unexpected error logs and verify the access logs are correct.
7676

7777
```shell
78-
kubectl -n <nginx-pod-namespace> logs <nginx-pod-name> -c nginx
78+
kubectl -n <nginx-pod-namespace> logs <nginx-pod-name>
7979
```
8080

8181
- The generated nginx config. Make sure it's correct.
8282
8383
```shell
84-
kubectl exec -it -n <nginx-pod-namespace> <nginx-pod-name> -c nginx -- nginx -T
84+
kubectl exec -it -n <nginx-pod-namespace> <nginx-pod-name> -- nginx -T
8585
```
8686
8787
- The statuses of the Gateway API Resources. Make sure they look correct.

0 commit comments

Comments
 (0)