Middle
What are the main Kubernetes commands you know?
sobes.tech AI
Answer from AI
The main Kubernetes commands that are frequently used:
kubectl get— view resources (pods, services, deployments, etc.)kubectl describe— detailed information about a resourcekubectl apply— apply configurations from manifestskubectl delete— delete resourceskubectl logs— view container logskubectl exec— execute commands inside a containerkubectl scale— change the number of replicaskubectl port-forward— port forwarding for accessing serviceskubectl rollout— manage deployment updates
These commands cover basic operations for managing and debugging applications in Kubernetes.