About 8,590,000 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). 1000m (milicores) = 1 core = 1 vCPU = 1 AWS vCPU = 1 GCP Core. …

  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. 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 - Graceful pod termination - Stack Overflow

    I need to let the container to run 5 minutes after the kubectl ' termination. It needs to do some work before it's destroyed. It seems that kubernetes contains exactly what I need:

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

  6. kubernetes - How to see logs of terminated pods - Stack Overflow

    Jul 12, 2019 · I am running selenium hubs and my pods are getting terminated frequently. I would like to look at the logs of the pods which are terminated. How to do it? NAME ...

  7. How to sign in kubernetes dashboard? - Stack Overflow

    Oct 10, 2017 · TL;DR To get the token in a single oneliner: kubectl -n kube-system describe secret $(kubectl -n kube-system get secret | awk '/^deployment-controller-token-/{print $1}') | awk …

  8. kubernetes - How can I correctly setup custom headers with nginx ...

    Jan 7, 2019 · For ingress-nginx, i.e Kubernetes ingress you can use this snippet on the ingress resource to understand what you can use to pass additional headers to client and backend.

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

  10. kubernetes - Ingress configuration for k8s in different namespaces ...

    Jan 21, 2020 · Ingress rules: separate Kubernetes resources with kind: Ingress. Will only take effect if Ingress Controller is already deployed on that node. While Ingress Controller can be deployed in any …