About 50 results
Open links in new tab
  1. 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).

  2. 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 …

  3. What's the difference between Docker Compose and Kubernetes?

    Kubernetes (2021) is the most popular distributed system orchestrator in the world with 88% adoption Because of its near ubiquity, K8S has become the most popular contemporary platform for innovative …

  4. 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...

  5. timeout - Kubernetes Ingress (Specific APP) 504 Gateway Time-Out …

    Sep 17, 2020 · Kubernetes Ingress (Specific APP) 504 Gateway Time-Out with 60 seconds Asked 5 years, 6 months ago Modified 2 years, 3 months ago Viewed 90k times

  6. How to set dynamic values with Kubernetes yaml file

    Jan 17, 2018 · There is a ConfigMap feature with Kubernetes, but that's also write the key/value to the yaml file. Is there a way to set the key to environment variables?

  7. 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 …

  8. Kubernetes Deployments vs StatefulSets - Stack Overflow

    Feb 19, 2021 · Deployments and ReplicationControllers are meant for stateless usage and are rather lightweight. StatefulSets are used when state has to be persisted. Therefore the latter use …

  9. Checking Kubernetes pod CPU and memory utilization

    Feb 5, 2019 · 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 …

  10. How to switch namespace in kubernetes - Stack Overflow

    Mar 27, 2019 · Say, I have two namespaces k8s-app1 and k8s-app2 I can list all pods from specific namespace using the below command kubectl get pods -n <namespace> We need to append …