Back to Talos

KubeStaticPodConfig

website/content/v1.14/reference/configuration/kubernetes/kubestaticpodconfig.md

1.14.0884 B
Original Source
<!-- markdownlint-disable -->

{{< highlight yaml >}} apiVersion: v1alpha1 kind: KubeStaticPodConfig name: nginx # Name of the static pod.

Static pods can be used to run components which should be started before the Kubernetes control plane is up.

pod: apiVersion: v1 kind: Pod metadata: name: nginx spec: containers: - image: nginx name: nginx {{< /highlight >}}

FieldTypeDescriptionValue(s)
namestringName of the static pod.
podUnstructuredStatic pods can be used to run components which should be started before the Kubernetes control plane is up.
Talos doesn't validate the pod definition.
Updates to this field can be applied without a reboot.

See https://kubernetes.io/docs/tasks/configure-pod-container/static-pod/. | |