You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ kubectl run nginx-pod --image=codeaprendiz/nginx:latest
## PORT FORWARD and test yoour changes
$ kubectl port-forward pod/nginx-pod 8080:80
## in another terminal
$ curl localhost:8080/check.txt
Its working!!
$ curl localhost:8080/403/
Forbidden!