File tree Expand file tree Collapse file tree 5 files changed +7
-2
lines changed
Expand file tree Collapse file tree 5 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22appVersion : v1.6.6
33description : A Helm chart for Argo Rollouts
44name : argo-rollouts
5- version : 2.35.2
5+ version : 2.35.3
66home : https://github.com/argoproj/argo-helm
77icon : https://argoproj.github.io/argo-rollouts/assets/logo.png
88keywords :
@@ -19,4 +19,4 @@ annotations:
1919 url: https://argoproj.github.io/argo-helm/pgp_keys.asc
2020 artifacthub.io/changes : |
2121 - kind: added
22- description: Added pod labels for the controller and the dashboard components
22+ description: Support revisionHistoryLimit
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ For full list of changes please check ArtifactHub [changelog].
5151| fullnameOverride | string | ` nil ` | String to fully override "argo-rollouts.fullname" template |
5252| global.deploymentAnnotations | object | ` {} ` | Annotations for all deployed Deployments |
5353| global.deploymentLabels | object | ` {} ` | Labels for all deployed Deployments |
54+ | global.revisionHistoryLimit | int | ` 10 ` | Number of old deployment ReplicaSets to retain. The rest will be garbage collected. |
5455| imagePullSecrets | list | ` [] ` | Secrets with credentials to pull images from a private registry. Registry secret names as an array. |
5556| installCRDs | bool | ` true ` | Install and upgrade CRDs |
5657| keepCRDs | bool | ` true ` | Keep CRD's on helm uninstall |
Original file line number Diff line number Diff line change 2323 strategy :
2424 type : Recreate
2525 replicas : {{ .Values.controller.replicas }}
26+ revisionHistoryLimit : {{ .Values.global.revisionHistoryLimit }}
2627 template :
2728 metadata :
2829 {{- with (mergeOverwrite (deepCopy .Values.podAnnotations) .Values.controller.podAnnotations) }}
Original file line number Diff line number Diff line change 2424 strategy :
2525 type : Recreate
2626 replicas : {{ .Values.dashboard.replicas }}
27+ revisionHistoryLimit : {{ .Values.global.revisionHistoryLimit }}
2728 template :
2829 metadata :
2930 {{- with (mergeOverwrite (deepCopy .Values.podAnnotations) .Values.dashboard.podAnnotations) }}
Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ global:
4343 deploymentAnnotations : {}
4444 # -- Labels for all deployed Deployments
4545 deploymentLabels : {}
46+ # -- Number of old deployment ReplicaSets to retain. The rest will be garbage collected.
47+ revisionHistoryLimit : 10
4648
4749controller :
4850 # -- Value of label `app.kubernetes.io/component`
You can’t perform that action at this time.
0 commit comments