Rename disableKubeEvents to enableKubeEvents

Signed-off-by: Dmytro Matviichuk <dmytro.matviichuk@advinow.com>
This commit is contained in:
Dmytro Matviichuk 2024-08-29 10:29:43 +02:00
parent 777f5410c5
commit ea72b94ea7
No known key found for this signature in database
GPG key ID: B570A274ADA6C6B4
3 changed files with 4 additions and 4 deletions

View file

@ -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.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.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.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.gitCommitMail | string | `""` | E-Mail address to use for Git commits |
| config.gitCommitSignOff | bool | `false` | Enables sign off on 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 | | config.gitCommitSigningKey | string | `""` | Path to public SSH key mounted in container, or GPG key ID used to sign commits |

View file

@ -40,7 +40,7 @@ data:
{{- with .Values.config.gitCommitSigningMethod }} {{- with .Values.config.gitCommitSigningMethod }}
git.commit-signing-method: {{ . | quote }} git.commit-signing-method: {{ . | quote }}
{{- end }} {{- end }}
kube.events: {{ .Values.config.disableKubeEvents | quote }} kube.events: {{ .Values.config.enableKubeEvents | quote }}
{{- with .Values.config.registries }} {{- with .Values.config.registries }}
registries.conf: | registries.conf: |
registries: registries:

View file

@ -121,8 +121,8 @@ config:
# -- If specified, the secret with Argo CD API key will be created. # -- If specified, the secret with Argo CD API key will be created.
token: "" token: ""
# -- Disable kubernetes events # -- Enable kubernetes events
disableKubeEvents: false enableKubeEvents: false
# -- Username to use for Git commits # -- Username to use for Git commits
gitCommitUser: "" gitCommitUser: ""