|
- Reasons for OOMKilled in kubernetes - Stack Overflow
Kubernetes has a different approach: with the node allocatable feature enabled (which is the default currently) it "carves" only a part of the node's memory for use by the pods How much that is depends on the value of 3 parameters, captured in the previous link (kube-reserved, system-reserved, and eviction-threshold)
- 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
- 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)
- Whats the difference between Docker Compose and Kubernetes?
Kubernetes (from Introduction to Kubernetes): Kubernetes is a container orchestrator like Docker Swarm, Mesos Marathon, Amazon ECS, Hashicorp Nomad Container orchestrators are the tools which group hosts together to form a cluster, and help us make sure applications: are fault-tolerant, can scale, and do this on-demand use resources optimally
- Kubernetes Pods Terminated - Exit Code 137 - Stack Overflow
Kubernetes Pods Terminated - Exit Code 137 Asked 6 years, 2 months ago Modified 1 year, 10 months ago Viewed 206k times
- 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?
- How can I see the contents of a PVC in Kubernetes?
I'm trying to view the contents of a PVC (Persistent Volume Claim), but it appears that the only method is to mount the PVC into a container and inspect the contents As you can imagine, this proce
- Checking Kubernetes pod CPU and memory utilization
I am trying to see how much memory and CPU is utilized by a kubernetes pod I ran the following command for this: kubectl top pod podname --namespace=default I am getting the following error: W02
|
|
|