docs(argo-cd): Documented defaults for imagePullSecrets (#1536)
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
This commit is contained in:
parent
3a05c7e7b4
commit
810aa6b887
4 changed files with 44 additions and 31 deletions
|
|
@ -44,6 +44,10 @@ global:
|
|||
tag: ""
|
||||
# -- If defined, a imagePullPolicy applied to all Argo CD deployments
|
||||
imagePullPolicy: IfNotPresent
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
imagePullSecrets: []
|
||||
|
||||
logging:
|
||||
# -- Set the global logging format. Either: `text` or `json`
|
||||
format: text
|
||||
|
|
@ -59,8 +63,6 @@ global:
|
|||
# runAsGroup: 999
|
||||
# fsGroup: 999
|
||||
|
||||
# -- If defined, uses a Secret to pull an image from a private Docker registry or repository
|
||||
imagePullSecrets: []
|
||||
# -- Mapping between IP and hostnames that will be injected as entries in the pod's hosts files
|
||||
hostAliases: []
|
||||
# - ip: 10.20.30.40
|
||||
|
|
@ -374,6 +376,10 @@ controller:
|
|||
# @default -- `""` (defaults to global.image.imagePullPolicy)
|
||||
imagePullPolicy: ""
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
# @default -- `[]` (defaults to global.imagePullSecrets)
|
||||
imagePullSecrets: []
|
||||
|
||||
# -- The number of application controller pods to run.
|
||||
# Additional replicas will cause sharding of managed clusters across number of replicas.
|
||||
replicas: 1
|
||||
|
|
@ -636,8 +642,6 @@ controller:
|
|||
# minAvailable: 1
|
||||
# maxUnavailable: 0
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
imagePullSecrets: []
|
||||
|
||||
## Dex
|
||||
dex:
|
||||
|
|
@ -689,6 +693,11 @@ dex:
|
|||
# -- Dex imagePullPolicy
|
||||
# @default -- `""` (defaults to global.image.imagePullPolicy)
|
||||
imagePullPolicy: ""
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
# @default -- `[]` (defaults to global.imagePullSecrets)
|
||||
imagePullSecrets: []
|
||||
|
||||
initImage:
|
||||
# -- Argo CD init image repository
|
||||
# @default -- `""` (defaults to global.image.repository)
|
||||
|
|
@ -844,9 +853,6 @@ dex:
|
|||
# minAvailable: 1
|
||||
# maxUnavailable: 0
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
imagePullSecrets: []
|
||||
|
||||
## Redis
|
||||
redis:
|
||||
# -- Enable redis
|
||||
|
|
@ -862,6 +868,10 @@ redis:
|
|||
# -- Redis imagePullPolicy
|
||||
imagePullPolicy: IfNotPresent
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
# @default -- `[]` (defaults to global.imagePullSecrets)
|
||||
imagePullSecrets: []
|
||||
|
||||
# -- Additional command line arguments to pass to redis-server
|
||||
extraArgs: []
|
||||
# - --bind
|
||||
|
|
@ -1035,9 +1045,6 @@ redis:
|
|||
# minAvailable: 1
|
||||
# maxUnavailable: 0
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
imagePullSecrets: []
|
||||
|
||||
# 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
|
||||
|
|
@ -1144,6 +1151,10 @@ server:
|
|||
# @default -- `""` (defaults to global.image.imagePullPolicy)
|
||||
imagePullPolicy: "" # IfNotPresent
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
# @default -- `[]` (defaults to global.imagePullSecrets)
|
||||
imagePullSecrets: []
|
||||
|
||||
# -- Additional command line arguments to pass to Argo CD server
|
||||
extraArgs: []
|
||||
|
||||
|
|
@ -1700,8 +1711,6 @@ server:
|
|||
# minAvailable: 1
|
||||
# maxUnavailable: 0
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
imagePullSecrets: []
|
||||
|
||||
## Repo Server
|
||||
repoServer:
|
||||
|
|
@ -1749,6 +1758,10 @@ repoServer:
|
|||
# @default -- `""` (defaults to global.image.imagePullPolicy)
|
||||
imagePullPolicy: "" # IfNotPresent
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
# @default -- `[]` (defaults to global.imagePullSecrets)
|
||||
imagePullSecrets: []
|
||||
|
||||
# -- Additional command line arguments to pass to repo server
|
||||
extraArgs: []
|
||||
|
||||
|
|
@ -1978,9 +1991,6 @@ repoServer:
|
|||
# minAvailable: 1
|
||||
# maxUnavailable: 0
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
imagePullSecrets: []
|
||||
|
||||
applicationSet:
|
||||
# -- Enable Application Set controller
|
||||
enabled: true
|
||||
|
|
@ -2002,6 +2012,10 @@ applicationSet:
|
|||
# @default -- `""` (defaults to global.image.imagePullPolicy)
|
||||
imagePullPolicy: ""
|
||||
|
||||
# -- If defined, uses a Secret to pull an image from a private Docker registry or repository.
|
||||
# @default -- `[]` (defaults to global.imagePullSecrets)
|
||||
imagePullSecrets: []
|
||||
|
||||
args:
|
||||
# -- The default metric address
|
||||
metricsAddr: :8080
|
||||
|
|
@ -2061,9 +2075,6 @@ applicationSet:
|
|||
# -- Prometheus ServiceMonitor labels
|
||||
additionalLabels: {}
|
||||
|
||||
# -- If defined, uses a Secret to pull an image from a private Docker registry or repository.
|
||||
imagePullSecrets: []
|
||||
|
||||
## Application set service configuration
|
||||
service:
|
||||
# -- Application set service annotations
|
||||
|
|
@ -2226,6 +2237,7 @@ notifications:
|
|||
imagePullPolicy: ""
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
# @default -- `[]` (defaults to global.imagePullSecrets)
|
||||
imagePullSecrets: []
|
||||
|
||||
# -- [Node selector]
|
||||
|
|
@ -2663,6 +2675,7 @@ notifications:
|
|||
imagePullPolicy: ""
|
||||
|
||||
# -- Secrets with credentials to pull images from a private registry
|
||||
# @default -- `[]` (defaults to global.imagePullSecrets)
|
||||
imagePullSecrets: []
|
||||
|
||||
service:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue