diff options
| author | jannfis <jann@mistrust.net> | 2021-04-14 11:11:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-14 11:11:48 +0200 |
| commit | 93d76f91a8242421edf6300cabf86c9dac1ac028 (patch) | |
| tree | 47a053e3f3c85eb49f50a9b145dee7dfa8641a2e /manifests/base | |
| parent | e5ced9d7c1c70c5dd31377d9984e91440b6f65ea (diff) | |
feat: Allow setting custom Git commit messages (#193)
* feat: Support Git commit message templates
Signed-off-by: jannfis <jann@mistrust.net>
* More templating
Signed-off-by: jannfis <jann@mistrust.net>
* Update
Signed-off-by: jannfis <jann@mistrust.net>
* Make TemplateCommitMessage public
Signed-off-by: jannfis <jann@mistrust.net>
* Update
Signed-off-by: jannfis <jann@mistrust.net>
* Update
Signed-off-by: jannfis <jann@mistrust.net>
* Introduce git.CommitOptions{}
Signed-off-by: jannfis <jann@mistrust.net>
* Update documentation for commit message templates
Signed-off-by: jannfis <jann@mistrust.net>
* Add unit tests
Signed-off-by: jannfis <jann@mistrust.net>
* Update manifests
Signed-off-by: jannfis <jann@mistrust.net>
* Fix typo in docs
Signed-off-by: jannfis <jann@mistrust.net>
* Fix linter issues
Signed-off-by: jannfis <jann@mistrust.net>
* Fix linter issues
Signed-off-by: jannfis <jann@mistrust.net>
Diffstat (limited to 'manifests/base')
| -rw-r--r-- | manifests/base/deployment/argocd-image-updater-deployment.yaml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/manifests/base/deployment/argocd-image-updater-deployment.yaml b/manifests/base/deployment/argocd-image-updater-deployment.yaml index cba1326..b71adef 100644 --- a/manifests/base/deployment/argocd-image-updater-deployment.yaml +++ b/manifests/base/deployment/argocd-image-updater-deployment.yaml @@ -98,14 +98,16 @@ spec: initialDelaySeconds: 3 periodSeconds: 30 volumeMounts: - - name: registries-conf + - name: image-updater-conf mountPath: /app/config serviceAccountName: argocd-image-updater volumes: - - name: registries-conf + - name: image-updater-conf configMap: name: argocd-image-updater-config optional: true items: - key: registries.conf path: registries.conf + - key: git.commit-message-template + path: commit.template
\ No newline at end of file |
