About 11,300,000 results
Open links in new tab
  1. What is the meaning of CPU and core in Kubernetes?

    Aug 30, 2019 · 70 To clarify what's described here in the Kubernetes context, 1 CPU is the same as a core (Also more information here).

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

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

    Jan 21, 2020 · I need to configure Ingress Nginx on azure k8s, and my question is if is possible to have ingress configured in one namespace et. ingress-nginx and some serivces in other …

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

  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. Get YAML for deployed Kubernetes services? - Stack Overflow

    May 12, 2017 · As of Kubernetes 1.14, --export is deprecated; see here. You can use get -o yaml without --export, although that includes information about the current object state, as well as …

  8. kubernetes - Namespace "stuck" as Terminating. How do I remove …

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

  9. kubernetes - kubectl ls -- or some other way to see into a POD

    Jan 3, 2018 · I'm using kubectl cp to copy a jar file from my local file system into a the home directory of a POD in my minikube environment. However, the only way I can confirm that the …

  10. How to expose a Kubernetes service on a specific Nodeport?

    kubectl delete service kubernetes-dashboard -n kube-system Expose the Dashboard deployment as a NodePort. kubectl expose deployment kubernetes-dashboard -n kube-system - …