47
Total Commands
100%
Free Access
⚡
Lightning Fast
Available Commands
Click on any command to copy it instantly
47 commands available
47 of 47
Resources
Master Kubernetes
Become proficient in container orchestration
kubectl get pods
pods
monitoring
kubectl describe pod <pod-name>
pods
debugging
kubectl delete pod <pod-name>
pods
management
kubectl logs <pod-name>
pods
logs
kubectl exec -it <pod-name> -- /bin/sh
pods
debugging
kubectl get nodes
nodes
monitoring
kubectl describe node <node-name>
nodes
debugging
kubectl cordon <node-name>
nodes
maintenance
kubectl uncordon <node-name>
nodes
maintenance
kubectl get deployments
deployments
monitoring
kubectl describe deployment <deployment-name>
deployments
debugging
kubectl scale deployment <deployment-name> --replicas=<n>
deployments
management
kubectl delete deployment <deployment-name>
deployments
management
kubectl get svc
services
monitoring
kubectl describe svc <service-name>
services
debugging
kubectl delete svc <service-name>
services
management
kubectl get namespaces
namespaces
monitoring
kubectl create namespace <name>
namespaces
management
kubectl delete namespace <name>
namespaces
management
kubectl get configmaps
configmap
monitoring
kubectl create configmap <name> --from-file=<file>
configmap
management
kubectl get secrets
secrets
monitoring
kubectl create secret generic <name> --from-literal=key=value
secrets
security
kubectl rollout restart deployment <name>
deployments
rolling-update
kubectl rollout status deployment <name>
deployments
monitoring
kubectl rollout undo deployment <name>
deployments
rollback
kubectl get daemonsets
daemonset
monitoring
kubectl get statefulsets
statefulset
monitoring
kubectl get jobs
jobs
batch
kubectl get cronjobs
cronjobs
batch
kubectl apply -f <file.yaml>
configuration
management
kubectl delete all --all
cleanup
management
kubectl edit <resource>/<name>
configuration
edit
kubectl port-forward <pod-name> <local>=<remote>
network
debugging
kubectl proxy
network
access
kubectl cluster-info
cluster
info
kubectl config view
config
info
kubectl config use-context <context-name>
config
context
kubectl config get-contexts
config
context
kubectl get endpoints
services
monitoring
kubectl top nodes
metrics
monitoring
kubectl top pods
metrics
monitoring
kubectl diag all
diagnostics
plugin
kubectl explain <resource>
doc
help
kubectl auth can-i <verb> <resource>
auth
permissions
kubectl get clusterroles
rbac
security
kubectl get rolebindings
rbac
security
Missing a command?
Help us improve this collection by suggesting commands that should be added. Your contributions help the entire developer community!