CKA Commands
# Check logs for a given pod
kubectl logs "$(kubectl get pods -o jsonpath='{.items[0].metadata.name}')"
# Run commands within a given pod
kubectl exec -it "$(kubectl get pods -o jsonpath='{.items[0].metadata.name}')" -- nginx -v
#INFO