About 11,600,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 everything else it say …

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

  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: corrected quest...

  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 pod (all are in …

  5. 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, you usually set a …

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

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

  7. 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 in json/yaml.

  8. kubectl - How to restart a deployment (or all deployment)

    Oct 8, 2020 · We have an AKS cluster and sometimes we end up with an issue where a deployment needs a restart (e.g. cached data has been updated and we want to refresh it or there is corrupt …

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

  10. 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 just transfer …