1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-05 15:37:19 +00:00

remove exceptionNamespace from init-container (#6187)

Signed-off-by: ShutingZhao <shuting@nirmata.com>
This commit is contained in:
shuting 2023-02-01 17:13:34 +08:00 committed by GitHub
parent fdfdcc058f
commit 740b7f5a3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 3 deletions

View file

@ -186,7 +186,7 @@ The command removes all the Kubernetes components associated with the chart and
| initImage.repository | string | `"kyverno/kyvernopre"` | Image repository | | initImage.repository | string | `"kyverno/kyvernopre"` | Image repository |
| initImage.tag | string | `nil` | Image tag If initImage.tag is missing, defaults to image.tag | | initImage.tag | string | `nil` | Image tag If initImage.tag is missing, defaults to image.tag |
| initImage.pullPolicy | string | `nil` | Image pull policy If initImage.pullPolicy is missing, defaults to image.pullPolicy | | initImage.pullPolicy | string | `nil` | Image pull policy If initImage.pullPolicy is missing, defaults to image.pullPolicy |
| initContainer.extraArgs | list | `["--loggingFormat=text","--exceptionNamespace={{ include \"kyverno.namespace\" . }}"]` | Extra arguments to give to the kyvernopre binary. | | initContainer.extraArgs | list | `["--loggingFormat=text"]` | Extra arguments to give to the kyvernopre binary. |
| replicaCount | int | `nil` | Desired number of pods | | replicaCount | int | `nil` | Desired number of pods |
| podLabels | object | `{}` | Additional labels to add to each pod | | podLabels | object | `{}` | Additional labels to add to each pod |
| podAnnotations | object | `{}` | Additional annotations to add to each pod | | podAnnotations | object | `{}` | Additional annotations to add to each pod |

View file

@ -233,7 +233,6 @@ initContainer:
# -- Extra arguments to give to the kyvernopre binary. # -- Extra arguments to give to the kyvernopre binary.
extraArgs: extraArgs:
- --loggingFormat=text - --loggingFormat=text
- --exceptionNamespace={{ include "kyverno.namespace" . }}
# -- (int) Desired number of pods # -- (int) Desired number of pods
replicaCount: ~ replicaCount: ~

View file

@ -32313,7 +32313,6 @@ spec:
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
args: args:
- --loggingFormat=text - --loggingFormat=text
- --exceptionNamespace=kyverno
resources: resources:
limits: limits:
cpu: 100m cpu: 100m