Kubernetes
Basic commands
kubectl get nodes= list all nodes in the clusterkubectl get pods= list all podskubectl get deployments= list all deploymentskubectl get svc= list all serviceskubectl get pods -n kube-system= list all system podskubeadm init= initialize the master clusterkubectl describe pod $podname= show detailed info about a specific podkubectl describe node $nodename= show detailed info about a specific nodekubectl delete pod $podname= delete a specific pod. Withnodeworks with nodes tookubectl exec $podname $command= execute a command from within a specific pod in the clusterkubectl edit deployment $deploymentname -n $namespace= edit on the fly a deployment from a specific namespace