Kubernetes & Docker
I got containers on containers on containers on containers on containers
Kubernetes
minikube version
minikube start
kubectl version
kubectl cluster-info
kubectl get #List resources
kubectl get nodes
kubectl describe #Show details
kubectl logs #Print logs from a container in a pod
kubectl get pods
kubectl exec POD-NAME -- whoami #Execute command on a container in a pod
kubectl exec -ti POD-NAME -- /bin/bash #Execute command on a container in a pod
kubectl create deployment DEPLOYMENT-NAME --image=DOCKER-IMAGE/DOCK-USER:latest
kubectl get deployments
Pods, nodes, and deployments
Docker
Last updated