mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Fix: [Bug] registry is not defaulted to ghcr.io for backgroundController (#7286)
Signed-off-by: mvaal <mvaal@expediagroup.com>
This commit is contained in:
parent
6133f4fbc3
commit
a29582af2a
2 changed files with 5 additions and 8 deletions
|
@ -394,8 +394,8 @@ The chart values are organised per component.
|
|||
| backgroundController.rbac.serviceAccount.name | string | `nil` | Service account name |
|
||||
| backgroundController.rbac.serviceAccount.annotations | object | `{}` | Annotations for the ServiceAccount |
|
||||
| backgroundController.rbac.clusterRole.extraResources | list | `[]` | Extra resource permissions to add in the cluster role |
|
||||
| backgroundController.image.registry | string | `nil` | Image registry |
|
||||
| backgroundController.image.repository | string | `"ghcr.io/kyverno/background-controller"` | Image repository |
|
||||
| backgroundController.image.registry | string | `"ghcr.io"` | Image registry |
|
||||
| backgroundController.image.repository | string | `"kyverno/background-controller"` | Image repository |
|
||||
| backgroundController.image.tag | string | `nil` | Image tag Defaults to appVersion in Chart.yaml if omitted |
|
||||
| backgroundController.image.pullPolicy | string | `"IfNotPresent"` | Image pull policy |
|
||||
| backgroundController.imagePullSecrets | list | `[]` | Image pull secrets |
|
||||
|
|
|
@ -831,13 +831,10 @@ backgroundController:
|
|||
# - pods
|
||||
|
||||
image:
|
||||
# -- (string) Image registry
|
||||
registry: ~
|
||||
# If you want to manage the registry you should remove it from the repository
|
||||
# registry: ghcr.io
|
||||
# repository: kyverno/background-controller
|
||||
# -- Image registry
|
||||
registry: ghcr.io
|
||||
# -- Image repository
|
||||
repository: ghcr.io/kyverno/background-controller
|
||||
repository: kyverno/background-controller
|
||||
# -- Image tag
|
||||
# Defaults to appVersion in Chart.yaml if omitted
|
||||
tag: # replaced in e2e tests
|
||||
|
|
Loading…
Add table
Reference in a new issue