About 18,100,000 results
Open links in new tab
  1. 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.

  2. Kubernetes: list all pods and its nodes - Stack Overflow

    I have 3 nodes, running all kinds of pods. I would like to have a list of nodes and pods, for an example: NODE1 POD1 NODE1 POD2 NODE2 POD3 NODE3 POD4 How can this please be achieved?

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

  4. Kubernetes: how to set VolumeMount user group and file permissions

    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 directly mount …

  5. kubernetes - How to find cluster node ip address - Stack Overflow

    Jan 31, 2020 · Minikube has the specific node ip address (192.168.99.100) for single cluster, if I using kubeadm to create many nodes cluster, what should I do to find this ip address?

  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. kubernetes - How to get the status of a particular pod or container ...

    Aug 24, 2017 · My 2 cents on the subject, don't mix POD status with Container status (it's true that they're correlated). Pods follow a defined lifecycle, starting in the Pending phase, moving through …

  8. kubernetes - How to export kubeconfig file from existing cluster ...

    May 15, 2020 · Is there an easy way to export kubeconfig file from existing cluster so i can use it in CI/CD ?

  9. 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 --type=NodePort The …

  10. kubernetes - How to check what port a pod is listening on with kubectl ...

    Dec 19, 2019 · I have a pod running and want to port forward so i can access the pod from the internal network. I don't know what port it is listening on though, there is no service yet. I describe the pod: $ k...