
What is the meaning of CPU and core in Kubernetes?
Aug 30, 2019 · To clarify what's described here in the Kubernetes context, 1 CPU is the same as a core (Also more information here).
kubernetes - How to check if network policy have been applied to pod ...
Feb 22, 2019 · 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...
How to switch namespace in kubernetes - Stack Overflow
Mar 27, 2019 · How to switch namespace in kubernetes Asked 6 years, 10 months ago Modified 2 months ago Viewed 421k times
Kubernetes: Can't delete PersistentVolumeClaim (pvc)
Kubernetes: Can't delete PersistentVolumeClaim (pvc) Asked 7 years, 6 months ago Modified 1 year, 7 months ago Viewed 125k times
Reasons for OOMKilled in kubernetes - Stack Overflow
Jun 22, 2020 · 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 …
Kubernetes: list all pods and its nodes - Stack Overflow
I have 3 nodes, running all kinds of pods. I would like to have a list of nodes and pods, for an example: NODE1 POD1 NODE1 POD2 NODE2 POD3 NODE3 POD4 How can this please be achieved?
How to copy files from Kubernetes Pods to local system
Sep 19, 2018 · That doesn’t help if the machine you’re calling from isn’t one of the Kubernetes nodes; for instance, if you’re using a managed cloud Kubernetes installation and trying to get content out of …
Can't create Secret in Kubernetes: illegal base64 data at input
Nov 20, 2018 · I want to create a secret for my kubernetes cluster. So I composed following dummy-secret.yaml file: apiVersion: v1 kind: Secret metadata: name: dummy-secret type: Opaque data: …
Kubernetes Pod Warning: 1 node(s) had volume node affinity conflict
Aug 21, 2018 · 0/2 nodes are available: 2 node(s) had volume node affinity conflict. Reading through Sownak Roy's answer I got a first glue what to do - but didn't know how to do it. So for the folks …
How do I force Kubernetes to re-pull an image? - Stack Overflow
Oct 14, 2015 · 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. …