What is Kubernetes?
Kubernetes is an open source container orchestration engine for automating deployment, scaling, and management of containerized applications. The open source project is hosted by the Cloud Native Computing Foundation (CNCF).
kubectl get pod
kubectl get nodes
kubectl events
kubectl namespaces
kubectl api-resources
kubectl delete pod <PODNAME> --grace-period=0 --force --namespace <NAMESPACE>
Create a YAML template file for a deployment or pod without creating it (ex. in CKA/CKAD exam context)
kubectl create deployment --image=nginx nginx --dry-run=client -o yaml > nginx-deployment.yaml
kubectl run nginx --image=nginx --dry-run=client -o yaml
kubectl -n dev logs nginx-app -f --previous
kubectl exec middleware -- nc -zv frontend-svc 80
Example output:
frontend-svc (10.2.3.4:80) open
kubectl config use-context docker-desktop
Output: Switched to context "docker-desktop".
kubectl config set-context --current --namespace default
[*]
Output: Context "docker-desktop" modified.
kubectl config get-contexts
[*] you also add this to a custom alias in .bashrc file like this:
alias kn="kubectl config set-context --current --namespace"
and run the following alias with your namespace:
kn my-working-namespace