Created
November 15, 2024 08:03
-
-
Save larstobi/8a797299791131201f3209fbb86e69be to your computer and use it in GitHub Desktop.
override container registry kyverno
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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