
* feat(argo-rollouts): add dashboard deployment and service credit: the implemention is inspired by the work from Andrii Perenesenko <andrii.perenesenko@gmail.com>. Signed-off-by: Hui Kang <hui.kang@salesforce.com> * Apply suggestions from code review Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Add components to selectlabels Signed-off-by: Hui Kang <hui.kang@salesforce.com> * Bump major version and add upgrading note Signed-off-by: Hui Kang <hui.kang@salesforce.com> * fix: Documentation on dashboard values, change annotations Signed-off-by: Hui Kang <hui.kang@salesforce.com> * feat: Enable dashboard during chart testing Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Hui Kang <hui.kang@salesforce.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
121 lines
2.7 KiB
YAML
121 lines
2.7 KiB
YAML
installCRDs: true
|
|
|
|
clusterInstall: true
|
|
|
|
controller:
|
|
component: rollouts-controller
|
|
## 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/argo-rollouts
|
|
tag: ""
|
|
pullPolicy: IfNotPresent
|
|
|
|
resources: {}
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
# requests:
|
|
# cpu: 50m
|
|
# memory: 64Mi
|
|
|
|
metrics:
|
|
enabled: false
|
|
serviceMonitor:
|
|
enabled: false
|
|
additionalLabels: {}
|
|
additionalAnnotations: {}
|
|
|
|
## 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
|
|
|
|
serviceAccount:
|
|
# 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: ""
|
|
|
|
## Annotations to be added to all CRDs
|
|
##
|
|
crdAnnotations: {}
|
|
|
|
## Annotations to be added to the Rollout pods
|
|
##
|
|
podAnnotations: {}
|
|
|
|
## 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
|
|
|
|
## Annotations to be added to the Rollout service
|
|
##
|
|
serviceAnnotations: {}
|
|
|
|
## Labels to be added to the Rollout pods
|
|
##
|
|
podLabels: {}
|
|
|
|
# Secrets with credentials to pull images from a private registry
|
|
imagePullSecrets: []
|
|
# - name: argo-pull-secret
|
|
|
|
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: ""
|