Global web icon
stackoverflow.com
https://stackoverflow.com/questions/54827386/how-t…
kubernetes - How to check if network policy have been applied to pod ...
I'm trying to restrict to my openvpn to allow accessing internal infrastructure and limit it only by 'develop' namespace, so I started with simple policy that denies all egress traffic and see no e...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/53255956/what-…
What is the meaning of CPU and core in Kubernetes?
To clarify what's described here in the Kubernetes context, 1 CPU is the same as a core (Also more information here).
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/72952953/setti…
kubernetes - Setting secrets as environment variables in deployment ...
I'm currently working on a Kubernetes deployment file and I need to set the environment variables that the container will have. Is there a way to set Kubernetes secrets as environment variables in the deployment file?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/52369247/names…
kubernetes - Namespace "stuck" as Terminating. How do I remove it ...
I've had a "stuck" namespace that I deleted showing in this eternal "terminating" status.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/59844622/ingre…
kubernetes - Ingress configuration for k8s in different namespaces ...
I need to configure Ingress Nginx on azure k8s, and my question is if is possible to have ingress configured in one namespace et. ingress-nginx and some serivces in other namespace eg. resources? My
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/57007134/how-t…
kubernetes - How to see logs of terminated pods - Stack Overflow
I am running selenium hubs and my pods are getting terminated frequently. I would like to look at the logs of the pods which are terminated. How to do it? NAME ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/69035324/compl…
kubernetes - Complete list of pod statuses - Stack Overflow
When you run "kubectl get pods -A -o wide" you get a list of pods and a STATUS column. Where can I get a list of the possible status options? What I trying to do is generate a list of sta...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/52522570/how-t…
How to expose a Kubernetes service on a specific Nodeport?
kubectl delete service kubernetes-dashboard -n kube-system Expose the Dashboard deployment as a NodePort. kubectl expose deployment kubernetes-dashboard -n kube-system --type=NodePort The above will assign a random port >= 30000. So use the Patch command to assign the port to a known, unused and desired port >= 30000.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/51468491/how-d…
kubernetes - How does kubectl port-forward create a connection? - Stack ...
As far as I understand, to access any application within Kubernetes cluster there should be a Service resource created and that should have an IP address which is accessible from an external network. But in case of port-forward how does kubectl create a connection to the application without an IP address which is accessible externally?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/48572691/what-…
kubernetes - What is the default value of initialDelaySeconds? - Stack ...
Kubernetes' liveness and readiness probes for pods (deployment) can be configured with this initial delay ---- meaning the probe will start after this many seconds after the container is up. If it ...