Parameters
The parent key for all of the following parameters is spegel.
namespace
| type |
dictionary |
| default |
Configures the namespace in which to deploy this component.
namespace.labels
| type |
dictionary |
| default |
|
Labels applied to the namespace.
The Spegel DaemonSet mounts the node’s containerd socket and registry configuration directory via hostPath volumes, which the baseline Pod Security Standard forbids.
The default privileged enforce label is therefore required on clusters that enforce Pod Security Standards, otherwise the pods are rejected by the admission webhook.
Keep this label (or label the namespace externally) when overriding namespace.labels.
|
parameters:
spegel:
namespace:
labels:
pod-security.kubernetes.io/enforce: privileged
charts
| type |
dictionary |
| default |
The Helm chart source and version for Spegel.
The chart is pulled from the OCI registry oci://ghcr.io/spegel-org/helm-charts/spegel.
helm_values
| type |
dictionary |
| default |
Values passed to the Spegel Helm chart.
See the chart’s values.yaml for all available options.
Mirror configuration is set directly through the chart’s values:
spegel.mirroredRegistries-
Registries for which Spegel creates mirror configuration on the nodes. An empty list (the chart default) means all registries are mirrored.
spegel.registryFilters-
Regular expressions matching tags or registries that Spegel must not resolve through the peer mesh; their layers are still served from the local cluster cache. Defaults to
.*:latest$so a mutable:latesttag isn’t resolved to a digest already cached on a peer, which would makeimagePullPolicy: Alwaysserve a stale image instead of the newest push. Immutable tags are unaffected and keep using peer tag resolution. Entries set here merge with the default; prefix the key with~(~registryFilters) to replace the default list instead. spegel.resolveTags-
Whether Spegel resolves tags through the peer mesh at all (chart default
true). Set it tofalseto resolve every tag upstream instead of only those matched byregistryFilters, which it supersedes; cf. the Spegel documentation.
parameters:
spegel:
helm_values:
spegel:
mirroredRegistries:
- https://docker.io
- https://ghcr.io
~registryFilters:
- ".*:dev$"
- ".*:snapshot$"
Make sure spegel.containerdRegistryConfigPath matches the containerd registry config path of the cluster’s distribution.
See the Spegel compatibility documentation for distribution-specific instructions.