kubectl logs command 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 logs of deployment

kubectl logs -f deployment/<name-of-deployment>
or
kubectl logs deployment/<name-of-deployment>

Example 4: kubectl logs with grep

kubectl log bino | grep "error unable-to-access-website" >> John/Doe/Bino/log.txt

Tags:

Misc Example