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

  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 pods. How much that …

  4. kubernetes - Namespace "stuck" as Terminating. How do I remove it ...

    I've had a "stuck" namespace that I deleted showing in this eternal "terminating" status.

  5. What is an 'endpoint' in Kubernetes? - Stack Overflow

    Oct 17, 2018 · 155 I am new to Kubernetes and started reading through the documentation. There often the term 'endpoint' is used but the documentation lacks an explicit definition. What is an 'endpoint' in …

  6. What's 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 …

  7. How can I see the contents of a PVC in Kubernetes?

    Apr 23, 2023 · 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 …

  8. 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 from an …

  9. Kubernetes ingress nginx redirect to https - Stack Overflow

    Mar 3, 2021 · Kubernetes ingress nginx redirect to https Ask Question Asked 5 years ago Modified 1 year ago

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