feat(argo-cd): Support annotations in argocd-configs secrets (#1314)
* feat(argo-cd): support annotations in argocd-configs secrets Signed-off-by: yu-croco <yuki.kita22@gmail.com> * fix(argo-cd): align to exitsing format Signed-off-by: yu-croco <yuki.kita22@gmail.com>
This commit is contained in:
parent
66638628b0
commit
1e689a4356
6 changed files with 25 additions and 2 deletions
|
|
@ -845,6 +845,8 @@ externalRedis:
|
|||
# -- The name of an existing secret with Redis credentials (must contain key `redis-password`).
|
||||
# When it's set, the `externalRedis.password` parameter is ignored
|
||||
existingSecret: ""
|
||||
# -- External Redis Secret annotations
|
||||
secretAnnotations: {}
|
||||
|
||||
## Server
|
||||
server:
|
||||
|
|
@ -1878,6 +1880,9 @@ configs:
|
|||
# ...
|
||||
# -----END OPENSSH PRIVATE KEY-----
|
||||
|
||||
# -- Annotations to be added to `configs.credentialTemplates` Secret
|
||||
credentialTemplatesAnnotations: {}
|
||||
|
||||
# -- Repositories list to be used by applications
|
||||
## Creates a secret for each key/value specified below to create repositories
|
||||
## Note: the last example in the list would use a repository credential template, configured under "configs.repositoryCredentials".
|
||||
|
|
@ -1895,6 +1900,9 @@ configs:
|
|||
# private-repo:
|
||||
# url: https://github.com/argoproj/private-repo
|
||||
|
||||
# -- Annotations to be added to `configs.repositories` Secret
|
||||
repositoriesAnnotations: {}
|
||||
|
||||
secret:
|
||||
# -- Create the argocd-secret
|
||||
createSecret: true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue