Rename disableKubeEvents to enableKubeEvents
Signed-off-by: Dmytro Matviichuk <dmytro.matviichuk@advinow.com>
This commit is contained in:
parent
777f5410c5
commit
ea72b94ea7
3 changed files with 4 additions and 4 deletions
|
@ -77,7 +77,7 @@ The `config.registries` value can be used exactly as it looks in the documentati
|
|||
| config.argocd.plaintext | bool | `false` | If specified, use an unencrypted HTTP connection to the Argo CD API instead of TLS. |
|
||||
| config.argocd.serverAddress | string | `""` | Connect to the Argo CD API server at server address |
|
||||
| config.argocd.token | string | `""` | If specified, the secret with Argo CD API key will be created. |
|
||||
| config.disableKubeEvents | bool | `false` | Disable kubernetes events |
|
||||
| config.enableKubeEvents | bool | `false` | Enable kubernetes events |
|
||||
| config.gitCommitMail | string | `""` | E-Mail address to use for Git commits |
|
||||
| config.gitCommitSignOff | bool | `false` | Enables sign off on commits |
|
||||
| config.gitCommitSigningKey | string | `""` | Path to public SSH key mounted in container, or GPG key ID used to sign commits |
|
||||
|
|
|
@ -40,7 +40,7 @@ data:
|
|||
{{- with .Values.config.gitCommitSigningMethod }}
|
||||
git.commit-signing-method: {{ . | quote }}
|
||||
{{- end }}
|
||||
kube.events: {{ .Values.config.disableKubeEvents | quote }}
|
||||
kube.events: {{ .Values.config.enableKubeEvents | quote }}
|
||||
{{- with .Values.config.registries }}
|
||||
registries.conf: |
|
||||
registries:
|
||||
|
|
|
@ -121,8 +121,8 @@ config:
|
|||
# -- If specified, the secret with Argo CD API key will be created.
|
||||
token: ""
|
||||
|
||||
# -- Disable kubernetes events
|
||||
disableKubeEvents: false
|
||||
# -- Enable kubernetes events
|
||||
enableKubeEvents: false
|
||||
|
||||
# -- Username to use for Git commits
|
||||
gitCommitUser: ""
|
||||
|
|
Loading…
Reference in a new issue