My latest and greatest tips, resources, and reads.So much goodness all in one place!
kubectl get pods: Display a list of all pods in the current namespace
kubectl describe pod <pod-name>: Describe the details of a specific pod
kubectl logs <pod-name>: Display logs for a specific pod
kubectl exec <pod-name> <command>: Execute a command in a running pod
kubectl create -f <pod-definition-file.yml>: Create a pod using a YAML definition file
kubectl get replicationcontrollers: Display a list of all replication controllers in the current namespace
kubectl get deployments: Display a list of all deployments in the current namespace