Kubernetes Reference
Minikube
minikube start
minikube stop
minikube delete
minikube env
minikube ip
---
Kubectl
kubectl get all
Pods, ReplicaSets, Deployments and Services
kubectl apply –f <yaml file>
kubectl apply –f .
kubectl describe pod <name of pod>
kubectl exec –it <pod name> <command>
kubectl get <pod | po | service | svc | rs | replicaset | deployment | deploy>
kubectl get po --show-labels
kubectl get po --show-labels -l {name}={value}
kubectl delete po <pod name>
kubectl delete po --all
---
Deployment Management
kubectl rollout status deploy <name of deployment>
kubectl rollout history deploy <name of deployment>
kubectl rollout undo deploy <name of deployment>