1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

Corrected the value of INIT_CONFIG env in deployment (#2927)

Signed-off-by: Abhinav Sinha <zeborg3@gmail.com>

Co-authored-by: shuting <shutting06@gmail.com>
This commit is contained in:
Abhinav Sinha 2022-01-07 16:22:34 +05:30 committed by GitHub
parent 15495a472e
commit 7ceba594b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -174,7 +174,7 @@ config:
webhooks:
# webhooks: [{"namespaceSelector":{"matchExpressions":[{"key":"environment","operator":"In","values":["prod"]}]}}]
generateSuccessEvents: 'false'
# existingConfig: init-config
# existingConfig: kyverno
metricsConfig:
namespaces: {
"include": [],

View file

@ -7736,7 +7736,7 @@ spec:
- -v=2
env:
- name: INIT_CONFIG
value: init-config
value: kyverno
- name: METRICS_CONFIG
value: kyverno-metrics
- name: KYVERNO_NAMESPACE

View file

@ -84,7 +84,7 @@ spec:
protocol: TCP
env:
- name: INIT_CONFIG
value: init-config
value: kyverno
- name: METRICS_CONFIG
value: kyverno-metrics
- name: KYVERNO_NAMESPACE

View file

@ -177,7 +177,7 @@ func (wrc *Register) Remove(cleanUp chan<- struct{}) {
}
// UpdateWebhookConfigurations updates resource webhook configurations dynamically
// base on the UPDATEs of Kyverno init-config ConfigMap
// based on the UPDATEs of Kyverno ConfigMap defined in INIT_CONFIG env
//
// it currently updates namespaceSelector only, can be extend to update other fields
// +deprecated