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). 1000m (milicores) = 1 core = 1 vCPU = 1 AWS vCPU = 1 …

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

  6. Port 6443 connection refused when setting up kubernetes

    Jan 3, 2022 · Port 6443 connection refused when setting up kubernetes Asked 3 years, 9 months ago Modified 9 months ago Viewed 97k times

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

  9. docker - how to stop/pause a pod in kubernetes - Stack Overflow

    Feb 22, 2019 · 14 With Kubernetes, it's not possible to stop/pause a pod. However, you can delete a pod, given the fact you have the manifest to bring that back again. However, if you …

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