File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 3232 maxReplicaCount :
3333 cpuUtilizationPercentage :
3434 memoryUtilizationPercentage :
35+ # Revision history limit for the deployment. This is the number of old ReplicaSets to retain
36+ # Set to 0 to disable revision history. If not set, defaults to 3
37+ revisionHistoryLimit : 3
3538worker :
3639 name :
3740 enabled :
@@ -51,4 +54,7 @@ worker:
5154 minReplicaCount :
5255 maxReplicaCount :
5356 cpuUtilizationPercentage :
54- memoryUtilizationPercentage :
57+ memoryUtilizationPercentage :
58+ # Revision history limit for the deployment. This is the number of old ReplicaSets to retain
59+ # Set to 0 to disable revision history. If not set, defaults to 3
60+ revisionHistoryLimit : 3
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ metadata:
1515 operator.1password.io/item-path : " vaults/EnvironmentVariables/items/{{ $.Values.project }}-{{ $.Values.environment }}"
1616 ad.datadoghq.com/{{ .Values.main.name }}.logs : " [{\" source\" : \" {{ .Values.main.type }}\" }]"
1717spec :
18+ revisionHistoryLimit : {{ .Values.main.revisionHistoryLimit | default 3 }}
1819 replicas : {{ .Values.main.replicaCount }}
1920 selector :
2021 matchLabels :
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ metadata:
1515 operator.1password.io/item-path : " vaults/EnvironmentVariables/items/{{ $.Values.project }}-{{ $.Values.environment }}"
1616 ad.datadoghq.com/{{ .Values.worker.name }}.logs : " [{\" source\" : \" {{ .Values.worker.type }}\" }]"
1717spec :
18+ revisionHistoryLimit : {{ .Values.worker.revisionHistoryLimit | default 3 }}
1819 replicas : {{ .Values.worker.replicaCount }}
1920 selector :
2021 matchLabels :
You can’t perform that action at this time.
0 commit comments