About 5,220,000 results
Open links in new tab
  1. 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 …

  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 configure ingress to direct traffic to an https ...

    Jan 31, 2019 · I have a backend using https. I want to separate load on that back-end based on URL/path. I decided to use ingress to do this url/path based logic in order to move traffic to …

  4. kubernetes - What is the best practice to have request and limit …

    Jul 28, 2021 · An 8x difference between requests and limits "feels" very large to me. Given your setup, the kubectl describe node output looks about right to me. Notice that the resource …

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

  6. kubernetes - Execute bash command in pod with kubectl? - Stack …

    Jul 9, 2018 · The double dash symbol "--" is used to separate the command you want to run inside the container from the kubectl arguments. So the correct way is: kubectl exec -it - …

  7. Kubernetes how to make Deployment to update image

    Nov 1, 2016 · 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 …

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

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

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