About 10,700,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. 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, …

  3. kubernetes - kubectl logs - continuously - Stack Overflow

    kubectl logs <pod-id> gets latest logs from my deployment - I am working on a bug and interested to know the logs at runtime - How can I get continuous stream of logs ? edit: …

  4. kubectl - How can I update a secret on Kubernetes when it is …

    Although it might not be as elegant or simple as the kubectl create secret generic --dry-run approach, technically, this approach is truly updating values rather than deleting/recreating them.

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

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

  7. kubectl: get specific value from a secret in plaintext

    Aug 6, 2019 · From the kubectl get secret documentation, it seems the standard way to get a secret returns the whole thing, in a specified format, with the values base64 encoded.

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

  9. Kubernetes API - Get Pods on Specific Nodes - Stack Overflow

    Aug 30, 2016 · kubectl get pods -o wide --sort-by="{.spec.nodeName}" Example of getting pods on nodes using label filter:

  10. Correct way to scale/restart an application down/up in kubernetes ...

    kubectl scale deployment another-app --replicas=0 kubectl scale deployment another-app --replicas=2 But is there a better way to do this so I don't have to manually look at the repliasets …