File tree 2 files changed +5
-5
lines changed
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.
24
24
* Version of Kubernetes
25
25
* Kubernetes platform (e.g. Mini-kube or GCP)
26
26
* 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 `
29
29
30
30
** Additional context**
31
31
Add 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:
69
69
- Logs of the ` nginx-gateway ` container. Look out for unexpected error logs or panics.
70
70
71
71
``` shell
72
- kubectl -n nginx-gateway logs < ngf-pod-name> -c nginx-gateway
72
+ kubectl -n nginx-gateway logs < ngf-pod-name>
73
73
```
74
74
75
75
- Logs of the ` nginx` container. Look for unexpected error logs and verify the access logs are correct.
76
76
77
77
` ` ` shell
78
- kubectl -n < nginx-pod-namespace> logs < nginx-pod-name> -c nginx
78
+ kubectl -n < nginx-pod-namespace> logs < nginx-pod-name>
79
79
` ` `
80
80
81
81
- The generated nginx config. Make sure it' s correct.
82
82
83
83
```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
85
85
```
86
86
87
87
- The statuses of the Gateway API Resources. Make sure they look correct.
You can’t perform that action at this time.
0 commit comments