kubectl (EN)
ToolCommand-line tool for interacting with Kubernetes clusters
Architecture
flowchart TD A[kubectl Client] --> B[Kubernetes API Server] B --> C[etcd] B --> D[Scheduler] B --> E[Controller Manager] B --> F[Kubelet] F --> G[Pod] F --> H[Container] G --> I[Application]
In Context
- Typically used together with Kubernetes manifest files (.yaml/.json)
- Related to: Kubernetes, Docker, Helm, Kubelet
- Example usage: kubectl get pods, kubectl apply -f deployment.yaml