Back to Talos

RegistryAuthConfig

website/content/v1.13/reference/configuration/cri/registryauthconfig.md

1.13.01.0 KB
Original Source
<!-- markdownlint-disable -->

{{< highlight yaml >}} apiVersion: v1alpha1 kind: RegistryAuthConfig name: my-private-registry.local:5000 # Registry endpoint to apply the authentication configuration to. username: my-username # Username/password authentication. password: my-password # Username/password authentication. {{< /highlight >}}

FieldTypeDescriptionValue(s)
namestringRegistry endpoint to apply the authentication configuration to.

Registry endpoint is the hostname part of the endpoint URL, e.g. 'my-mirror.local:5000' for 'https://my-mirror.local:5000/v2/'.

The authentication configuration will apply to all image pulls for this registry endpoint, by Talos or any Kubernetes workloads. | | |username |string |Username/password authentication. | | |password |string |Username/password authentication. | | |auth |string |Raw authentication string. | | |identityToken |string |Identity token authentication. | |