About 29,900,000 results
Open links in new tab
  1. How to expose a Kubernetes service on a specific Nodeport?

    Oct 17, 2018 · kubectl delete service kubernetes-dashboard -n kube-system Expose the Dashboard deployment as a NodePort. kubectl expose deployment kubernetes-dashboard -n …

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

    Nov 3, 2023 · 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 …

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

  4. kubernetes - How to mount a persistent volume on a …

    Mar 4, 2020 · 1 If doing this in a cloud provider, the storageClass object will create the respective volume for your persistent volume claim. If you are trying to do this locally on minikube or in a …

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

  6. kubernetes - How to kubectl re-apply deployment - Stack Overflow

    Apr 6, 2022 · I want to update my pod because there is a new image uploaded to docker registry with latest tag. I am currently doing this: kubectl delete -f deployment.yaml kubectl apply -f …

  7. How does kubectl port-forward create a connection?

    Jul 23, 2018 · 111 kubectl port-forward makes a specific Kubernetes API request. That means the system running it needs access to the API server, and any traffic will get tunneled over a …

  8. Kubernetes: how to scale my pods - Stack Overflow

    Kubernetes: how to scale my pods Asked 9 years ago Modified 1 year, 4 months ago Viewed 167k times

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

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

    Jan 3, 2018 · You can execute commands in a container using kubectl exec command. For example: to check files in any folder: kubectl exec <pod_name> -- ls -la / or to calculate …