Kubernetes, Static Pods
· ☕ 2 min read · ✍️ Brett Johnson
Static pods are like regular pods, except they are managed by the kubelet service on a node and not the API server. The kubelet creates a mirror pod on the API server, which is a read-only copy that allows the pod to be seen on the API server but not controlled.
The kubelet service is responsible for managing the state of the pod and controlling restarts, for example.
The kubelet process watches the location specified with the configuration parameter --manifest-url or --pod-manifest-path.