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/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/40401795/how-c…
How can I trigger a Kubernetes Scheduled Job manually?
I've created a Kubernetes Scheduled Job, which runs twice a day according to its schedule. However, I would like to trigger it manually for testing purposes. How can I do this?
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/41325087/what-…
kubernetes - What is the difference between a pod and a deployment ...
In kubernetes Pods are the smallest deployable units. Every time when we create a kubernetes object like Deployments, replica-sets, statefulsets, daemonsets it creates pod.
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/43941772/get-y…
Get YAML for deployed Kubernetes services? - Stack Overflow
As of Kubernetes 1.14, --export is deprecated; see here. You can use get -o yaml without --export, although that includes information about the current object state, as well as the declarative configuration needed to (re)configure the object.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/33112789/how-d…
How do I force Kubernetes to re-pull an image? - Stack Overflow
315 Kubernetes will pull upon Pod creation if either (see updating-images doc): Using images tagged :latest imagePullPolicy: Always is specified This is great if you want to always pull. But what if you want to do it on demand: For example, if you want to use some-public-image:latest but only want to pull a newer version manually when you ask ...