About 50 results
Open links in new tab
  1. kubernetes - How to check if network policy have been applied to …

    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 …

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

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

  4. kubernetes - How does kubectl port-forward create a connection?

    Jul 23, 2018 · 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 …

  5. How can I trigger a Kubernetes Scheduled Job manually?

    Nov 3, 2016 · 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?

  6. x509certificate - Kubernetes: expired certificate - Stack Overflow

    Our Kubernetes 1.6 cluster had certificates generated when the cluster was built on April 13th, 2017. On December 13th, 2017, our cluster was upgraded to version 1.8, and new certificates …

  7. kubectl - How to login/enter in kubernetes pod - Stack Overflow

    May 15, 2021 · I have kubernetes pods running as shown in command "kubectl get all -A " : and same pods are shown in command "kubectl get pod -A" : I want to enter/login to any of these …

  8. memory - What are the difference between M and Mi in …

    Jun 10, 2021 · What are the difference between M and Mi in Kubernetes resources documentation? Asked 4 years, 5 months ago Modified 2 years, 9 months ago Viewed 37k times

  9. Are Containers and Kubernetes IaaS or PaaS? - Stack Overflow

    Aug 12, 2020 · Kubernetes is neither IaaS nor PaaS. It's a container orchestration engine which makes it more like a Container As A Service or CaaS. You need a IaaS layer below …

  10. Handle Kubernetes pod exceeding CPU resource limit?

    Aug 22, 2019 · Kubernetes uses kernel throttling to implement CPU limit. If an application goes above the limit, it gets throttled (aka fewer CPU cycles). Memory requests and limits, on the …