About 13,600,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. 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?

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

    Oct 10, 2017 · This allows me to skip, but doesn't give me authorization to see anything. is forbidden: User "system:serviceaccount:kubernetes-dashboard:kubernetes-dashboard"

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

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

  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. Kubernetes: how to set VolumeMount user group and file …

    Apr 21, 2017 · The Kubernetes securityContext, including fsGroup, does not change the ownership or permissions of files on hostPath volumes. This is because hostPath volumes …

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

    Feb 22, 2019 · I have a MySQL pod running in my cluster. I need to temporarily pause the pod from working without deleting it, something similar to docker where the docker stop container …

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

  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. Kubernetes how to make Deployment to update image

    If you want a kubernetes deployment to start a new pod using the same image (and this trick only works with the "latest" tag) you have to specify it without a tag. Next time add the "latest" tag …