2020-02-13 03:57:25 +09:00
|
|
|
installCRDs: true
|
|
|
|
|
|
|
|
|
|
clusterInstall: true
|
|
|
|
|
|
|
|
|
|
controller:
|
|
|
|
|
component: rollouts-controller
|
2020-07-13 03:52:28 +04:00
|
|
|
## Node selectors and tolerations for server scheduling to nodes with taints
|
|
|
|
|
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
|
|
|
|
|
##
|
|
|
|
|
nodeSelector: {}
|
|
|
|
|
tolerations: []
|
|
|
|
|
affinity: {}
|
2020-02-13 03:57:25 +09:00
|
|
|
image:
|
2021-05-31 18:06:26 +02:00
|
|
|
registry: quay.io
|
2020-02-13 03:57:25 +09:00
|
|
|
repository: argoproj/argo-rollouts
|
2021-05-31 18:06:26 +02:00
|
|
|
tag: ""
|
2020-02-13 03:57:25 +09:00
|
|
|
pullPolicy: IfNotPresent
|
|
|
|
|
|
2020-07-09 11:20:47 -06:00
|
|
|
resources: {}
|
|
|
|
|
# limits:
|
|
|
|
|
# cpu: 100m
|
|
|
|
|
# memory: 128Mi
|
|
|
|
|
# requests:
|
|
|
|
|
# cpu: 50m
|
|
|
|
|
# memory: 64Mi
|
|
|
|
|
|
2020-10-27 17:31:38 +00:00
|
|
|
metrics:
|
2021-05-31 22:23:05 +01:00
|
|
|
enabled: false
|
2020-10-27 17:31:38 +00:00
|
|
|
serviceMonitor:
|
|
|
|
|
enabled: false
|
|
|
|
|
additionalLabels: {}
|
|
|
|
|
additionalAnnotations: {}
|
|
|
|
|
|
2021-08-10 02:39:38 -04:00
|
|
|
## Readiness and liveness probes for rollouts controller
|
|
|
|
|
livenessProbe:
|
|
|
|
|
httpGet:
|
|
|
|
|
path: /metrics
|
|
|
|
|
port: 8090
|
|
|
|
|
initialDelaySeconds: 30
|
|
|
|
|
periodSeconds: 20
|
|
|
|
|
failureThreshold: 3
|
|
|
|
|
successThreshold: 1
|
|
|
|
|
timeoutSeconds: 10
|
|
|
|
|
readinessProbe:
|
|
|
|
|
httpGet:
|
|
|
|
|
path: /metrics
|
|
|
|
|
port: 8090
|
|
|
|
|
initialDelaySeconds: 15
|
|
|
|
|
periodSeconds: 5
|
|
|
|
|
failureThreshold: 3
|
|
|
|
|
successThreshold: 1
|
|
|
|
|
timeoutSeconds: 4
|
|
|
|
|
|
2020-02-13 03:57:25 +09:00
|
|
|
serviceAccount:
|
2021-05-31 18:06:26 +02:00
|
|
|
# Specifies whether a service account should be created
|
|
|
|
|
create: true
|
|
|
|
|
# Annotations to add to the service account
|
|
|
|
|
annotations: {}
|
|
|
|
|
# The name of the service account to use.
|
|
|
|
|
# If not set and create is true, a name is generated using the fullname template
|
|
|
|
|
name: ""
|
2020-03-25 09:29:44 -07:00
|
|
|
|
2021-04-07 21:29:47 +01:00
|
|
|
## Annotations to be added to all CRDs
|
|
|
|
|
##
|
|
|
|
|
crdAnnotations: {}
|
|
|
|
|
|
2020-08-26 12:26:54 -04:00
|
|
|
## Annotations to be added to the Rollout pods
|
2020-03-25 09:29:44 -07:00
|
|
|
##
|
|
|
|
|
podAnnotations: {}
|
|
|
|
|
|
2021-05-31 18:06:26 +02:00
|
|
|
## Security Context to set on pod level
|
|
|
|
|
##
|
|
|
|
|
podSecurityContext:
|
|
|
|
|
runAsNonRoot: true
|
|
|
|
|
|
|
|
|
|
## Security Context to set on container level
|
|
|
|
|
##
|
|
|
|
|
containerSecurityContext: {}
|
|
|
|
|
# capabilities:
|
|
|
|
|
# drop:
|
|
|
|
|
# - ALL
|
|
|
|
|
# readOnlyRootFilesystem: true
|
|
|
|
|
# runAsNonRoot: true
|
|
|
|
|
# runAsUser: 1000
|
|
|
|
|
|
2020-08-26 12:26:54 -04:00
|
|
|
## Annotations to be added to the Rollout service
|
|
|
|
|
##
|
|
|
|
|
serviceAnnotations: {}
|
|
|
|
|
|
|
|
|
|
## Labels to be added to the Rollout pods
|
2020-03-25 09:29:44 -07:00
|
|
|
##
|
|
|
|
|
podLabels: {}
|
|
|
|
|
|
2020-08-30 19:10:09 +02:00
|
|
|
# Secrets with credentials to pull images from a private registry
|
2020-03-25 09:29:44 -07:00
|
|
|
imagePullSecrets: []
|
2020-08-30 19:10:09 +02:00
|
|
|
# - name: argo-pull-secret
|
2021-08-16 11:27:24 -04:00
|
|
|
|
|
|
|
|
dashboard:
|
|
|
|
|
enabled: false
|
|
|
|
|
component: rollouts-dashboard
|
|
|
|
|
## Node selectors and tolerations for server scheduling to nodes with taints
|
|
|
|
|
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
|
|
|
|
|
##
|
|
|
|
|
nodeSelector: {}
|
|
|
|
|
tolerations: []
|
|
|
|
|
affinity: {}
|
|
|
|
|
image:
|
|
|
|
|
registry: quay.io
|
|
|
|
|
repository: argoproj/kubectl-argo-rollouts
|
|
|
|
|
tag: ""
|
|
|
|
|
pullPolicy: IfNotPresent
|
|
|
|
|
resources: {}
|
|
|
|
|
podSecurityContext:
|
|
|
|
|
runAsNonRoot: true
|
|
|
|
|
containerSecurityContext: {}
|
|
|
|
|
serviceAccount:
|
|
|
|
|
create: true
|
|
|
|
|
annotations: {}
|
|
|
|
|
# The name of the service account to use.
|
|
|
|
|
# If not set and create is true, a name is generated using the fullname template
|
|
|
|
|
name: ""
|