We should be able to set the revisionHistoryLimit in our values file for a helm deployment of oauth2-proxy
Current Behavior
There is no value for setting the revision history limit in the value file
Possible Solution
Allow setting the revisionHistoryLimitValue in the values file and if not specified use the default
I think something like this would work in the deployment.yaml file of the helm chart
{{- if .Values.revisionHistoryLimit}}
revisionHistoryLimit: {{ .Values.revisionHistoryLimit }}
{{- end }}
Context
Its important to be able to control how many old Replica Sets are maintained.
Expected Behavior
We should be able to set the revisionHistoryLimit in our values file for a helm deployment of oauth2-proxy
Current Behavior
There is no value for setting the revision history limit in the value file
Possible Solution
Allow setting the revisionHistoryLimitValue in the values file and if not specified use the default I think something like this would work in the deployment.yaml file of the helm chart
Context
Its important to be able to control how many old Replica Sets are maintained.