feat(argo-cd): add poddisruptionbudget template. (#1110)
Signed-off-by: mugioka <okamugi0722@gmail.com>
This commit is contained in:
parent
4c1ee93faf
commit
f1995d697e
8 changed files with 202 additions and 2 deletions
|
|
@ -345,6 +345,17 @@ controller:
|
|||
# name: custom-tools
|
||||
# subPath: helm
|
||||
|
||||
pdb:
|
||||
# -- Labels to be added to application controller pdb
|
||||
labels: {}
|
||||
# -- Annotations to be added to application controller pdb
|
||||
annotations: {}
|
||||
|
||||
# -- Deploy a Poddisruptionbudget for the application controller
|
||||
enabled: false
|
||||
# minAvailable: 1
|
||||
# maxUnavailable: 0
|
||||
|
||||
## Dex
|
||||
dex:
|
||||
# -- Enable dex
|
||||
|
|
@ -539,6 +550,17 @@ dex:
|
|||
# name: custom-tools
|
||||
# subPath: helm
|
||||
|
||||
pdb:
|
||||
# -- Labels to be added to Dex server pdb
|
||||
labels: {}
|
||||
# -- Annotations to be added to Dex server pdb
|
||||
annotations: {}
|
||||
|
||||
# -- Deploy a Poddisruptionbudget for the Dex server
|
||||
enabled: false
|
||||
# minAvailable: 1
|
||||
# maxUnavailable: 0
|
||||
|
||||
## Redis
|
||||
redis:
|
||||
# -- Enable redis
|
||||
|
|
@ -712,6 +734,17 @@ redis:
|
|||
# -- Prometheus ServiceMonitor labels
|
||||
additionalLabels: {}
|
||||
|
||||
pdb:
|
||||
# -- Labels to be added to Redis server pdb
|
||||
labels: {}
|
||||
# -- Annotations to be added to Redis server pdb
|
||||
annotations: {}
|
||||
|
||||
# -- Deploy a Poddisruptionbudget for the Redis server
|
||||
enabled: false
|
||||
# minAvailable: 1
|
||||
# maxUnavailable: 0
|
||||
|
||||
# This key configures Redis-HA subchart and when enabled (redis-ha.enabled=true)
|
||||
# the custom redis deployment is omitted
|
||||
# Check the redis-ha chart for more properties
|
||||
|
|
@ -1352,6 +1385,17 @@ server:
|
|||
# - name: argo-rollouts
|
||||
# url: https://github.com/argoproj-labs/rollout-extension/releases/download/v0.1.0/extension.tar
|
||||
|
||||
pdb:
|
||||
# -- Labels to be added to server pdb
|
||||
labels: {}
|
||||
# -- Annotations to be added to server pdb
|
||||
annotations: {}
|
||||
|
||||
# -- Deploy a Poddisruptionbudget for the server
|
||||
enabled: false
|
||||
# minAvailable: 1
|
||||
# maxUnavailable: 0
|
||||
|
||||
## Repo Server
|
||||
repoServer:
|
||||
# -- Repo server name
|
||||
|
|
@ -1590,6 +1634,17 @@ repoServer:
|
|||
# name: custom-tools
|
||||
# subPath: helm
|
||||
|
||||
pdb:
|
||||
# -- Labels to be added to Repo server pdb
|
||||
labels: {}
|
||||
# -- Annotations to be added to Repo server pdb
|
||||
annotations: {}
|
||||
|
||||
# -- Deploy a Poddisruptionbudget for the Repo server
|
||||
enabled: false
|
||||
# minAvailable: 1
|
||||
# maxUnavailable: 0
|
||||
|
||||
## Argo Configs
|
||||
configs:
|
||||
# -- Provide one or multiple [external cluster credentials]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue