File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff 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**
3131Add any other context about the problem here. Any log files you want to share.
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments