feat(argocd-image-updater): Add missing config map key for git commit-message-template (#986)
* [v0.2.2] Add missing config map key for git commit-message-template Signed-off-by: Niklas Jönsson <niklas@pej.se> * Sync some other things from upstream manifests Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Quote bools Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * fix: Rerun helm-docs Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
bdb42a55cc
commit
aa41896292
6 changed files with 101 additions and 11 deletions
|
|
@ -40,6 +40,9 @@ extraEnv: []
|
|||
# value: "us-west-1"
|
||||
|
||||
config:
|
||||
# -- API kind that is used to manage Argo CD applications (`kubernetes` or `argocd`)
|
||||
applicationsAPIKind: ""
|
||||
|
||||
# Described in detail here https://argocd-image-updater.readthedocs.io/en/stable/install/running/#flags
|
||||
argocd:
|
||||
# -- Use the gRPC-web protocol to connect to the Argo CD API
|
||||
|
|
@ -51,6 +54,18 @@ config:
|
|||
# -- If specified, use an unencrypted HTTP connection to the ArgoCD API instead of TLS.
|
||||
plaintext: false
|
||||
|
||||
# -- Disable kubernetes events
|
||||
disableKubeEvents: false
|
||||
|
||||
# -- Username to use for Git commits
|
||||
gitCommitUser: ""
|
||||
|
||||
# -- E-Mail address to use for Git commits
|
||||
gitCommitMail: ""
|
||||
|
||||
# -- Changing the Git commit message
|
||||
gitCommitTemplate: ""
|
||||
|
||||
# -- ArgoCD Image Update log level
|
||||
logLevel: "info"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue