kubectl cluster-info code example

Example 1: kubectl list context

# list kubernets contexts
kubectl config get-contexts

Example 2: kubectl get pods

# Get pods in default namespace
kubectl get pods

#Get Pods in my-namespace
kubectl get pods -n my-namespace

#Get Pods in all namespaces
kubectl get pods --all-namespaces

Example 3: kubectl get pod by node

kubectl get pods --all-namespaces -o wide --field-selector spec.nodeName=<node>

Example 4: kubectl restart deployment

kubectl rollout restart deployment yourDeploymentName

Example 5: kubectl describe to yaml

kubectl describe <type> <name> -o yaml

Example 6: kubectl

curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl

Tags:

Misc Example