feat(argo-cd): add extraContainers to pods besides server (#927)
* feat(argo-cd): add extraContainers to pods besides server Signed-off-by: mikutas <23391543+mikutas@users.noreply.github.com> * Apply suggestions from code review 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
d96cb02a43
commit
f10234f340
8 changed files with 38 additions and 11 deletions
|
|
@ -220,6 +220,8 @@ controller:
|
|||
enabled: false
|
||||
rules: []
|
||||
|
||||
## Additional containers to be added to the controller pod.
|
||||
extraContainers: []
|
||||
|
||||
## Dex
|
||||
dex:
|
||||
|
|
@ -339,6 +341,9 @@ dex:
|
|||
# cpu: 10m
|
||||
# memory: 32Mi
|
||||
|
||||
## Additional containers to be added to the dex pod.
|
||||
extraContainers: []
|
||||
|
||||
## Redis
|
||||
redis:
|
||||
enabled: true
|
||||
|
|
@ -419,6 +424,9 @@ redis:
|
|||
volumeMounts: []
|
||||
volumes: []
|
||||
|
||||
## Additional containers to be added to the redis pod.
|
||||
extraContainers: []
|
||||
|
||||
# This key configures Redis-HA subchart and when enabled (redis-ha.enabled=true)
|
||||
# the custom redis deployment is omitted
|
||||
redis-ha:
|
||||
|
|
@ -992,6 +1000,9 @@ repoServer:
|
|||
## Automount API credentials for the Service Account
|
||||
automountServiceAccountToken: true
|
||||
|
||||
## Additional containers to be added to the repo server pod.
|
||||
extraContainers: []
|
||||
|
||||
## Repo server rbac rules
|
||||
# rbac:
|
||||
# - apiGroups:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue