About 6,460,000 results
Open links in new tab
  1. Kubernetes: kubectl run: command not found - Stack Overflow

    Mar 26, 2019 · I was running kubectl command to deploy my application in the gcloud. But suddenly the kubectl command stopped working. kubectl command is working fine but for …

  2. Namespace "stuck" as Terminating. How do I remove it?

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

  3. kubernetes - How to configure kubectl with cluster information …

    Nov 6, 2016 · How can I config kubectl to use the cluster, user and authentication from this file as default in one command? I only see separate set-cluster, set-credentials, set-context, use …

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

  5. How to switch namespace in kubernetes - Stack Overflow

    Mar 27, 2019 · Say, I have two namespaces k8s-app1 and k8s-app2 I can list all pods from specific namespace using the below command kubectl get pods -n <namespace> We …

  6. Kubernetes POD delete with Pattern Match or Wildcard

    Am I missing something to delete POD using Pattern Match or with Wilcard? When using Kubernetes it is more common to use labels and selectors. E.g. if you deployed an application, …

  7. How to copy files from Kubernetes Pods to local system

    Sep 19, 2018 · Its understandable that kubectl cp uses something like tar to verify the transferred files. You could build your own verifier using chksum + cat, but I think it is easier and safer to …

  8. How to see logs of terminated pods - Stack Overflow

    Jul 12, 2019 · 5 kubectl get event -o custom-columns=NAME:.metadata.name -n <namespace> --no-headers use the above command to get the list of terminated pods in your namespace and …

  9. How to get the current namespace of current context using kubectl

    Apr 25, 2019 · I am trying to get the namespace of the currently used Kubernetes context using kubectl. I know there is a command kubectl config get-contexts but I see that it cannot output …

  10. Kubectl using command to get cluster status - Stack Overflow

    Feb 26, 2019 · You could run kubectl cluster-info followed by kubectl get nodes and check the STATUS column for all nodes using parsing tools like awk, jq or kubectl's own -o jsonpath …