Skip to content

Instantly share code, notes, and snippets.

@larstobi
Created November 15, 2024 08:03
Show Gist options
  • Save larstobi/8a797299791131201f3209fbb86e69be to your computer and use it in GitHub Desktop.
Save larstobi/8a797299791131201f3209fbb86e69be to your computer and use it in GitHub Desktop.
override container registry kyverno
# values.yaml
# Override the registry for the main Kyverno image (Admission Controller)
image:
registry: myprivateregistry
repository: kyverno/kyverno
tag: v1.10.0 # Replace with your desired version
# Override the registry for the Init Container image
initContainerImage:
registry: myprivateregistry
repository: kyverno/kyverno
tag: v1.10.0 # Replace with your desired version
# Override the registry for the Background Controller image
backgroundController:
image:
registry: myprivateregistry
repository: kyverno/kyverno
tag: v1.10.0 # Replace with your desired version
# Override the registry for the Cleanup Controller (if applicable)
cleanupController:
image:
registry: myprivateregistry
repository: kyverno/kyverno
tag: v1.10.0 # Replace with your desired version
# Override the registry for the Metrics Configurator (if applicable)
metricsConfig:
image:
registry: myprivateregistry
repository: kyverno/kyverno
tag: v1.10.0 # Replace with your desired version
# Override the registry for the Policy Reporter (if you are using it)
policyReporter:
image:
registry: myprivateregistry
repository: kyverno/policy-reporter
tag: v2.11.2 # Replace with your desired version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment