See Kubernetes Pod Logs
Connect to the project cluster
Open terminal
gcloud container clusters get-credentials <enviroment>-cluster --zone us-central1-c <cluster-name-proyect>
Getting the pods the cluster
kubectl get pods -n <connected-cluster-enviroment>
Connect to pod
kubectl logs -f <name-pod> -c <name-container> -n <enviroment>
Reference Links
Last updated