File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11name : oauth2-proxy
2- version : 6.9.1
2+ version : 6.9.2
33apiVersion : v2
44appVersion : 7.4.0
55home : https://oauth2-proxy.github.io/oauth2-proxy/
@@ -31,5 +31,4 @@ maintainers:
31313232 - name : pierluigilenoci
333334- engine : gotpl
3534kubeVersion : " >=1.9.0-0"
Original file line number Diff line number Diff line change @@ -157,6 +157,7 @@ Parameter | Description | Default
157157` readinessProbe.successThreshold ` | number of successes | 1
158158` replicaCount ` | desired number of pods | ` 1 `
159159` resources ` | pod resource requests & limits | ` {} `
160+ ` revisionHistoryLimit ` | maximum number of revisions maintained | 10
160161` service.portNumber ` | port number for the service | ` 80 `
161162` service.appProtocol ` | application protocol on the port of the service | ` http `
162163` service.type ` | type of service | ` ClusterIP `
@@ -192,7 +193,7 @@ Parameter | Description | Default
192193` metrics.service.appProtocol ` | application protocol of the metrics port in the service | ` http `
193194` metrics.servicemonitor.enabled ` | Enable Prometheus Operator ServiceMonitor | ` false `
194195` metrics.servicemonitor.namespace ` | Define the namespace where to deploy the ServiceMonitor resource | ` "" `
195- ` metrics.servicemonitor.prometheusInstance ` | Prometheus Instance definition | ` default `
196+ ` metrics.servicemonitor.prometheusInstance ` | Prometheus Instance definition | ` default `
196197` metrics.servicemonitor.interval ` | Prometheus scrape interval | ` 60s `
197198` metrics.servicemonitor.scrapeTimeout ` | Prometheus scrape timeout | ` 30s `
198199` metrics.servicemonitor.labels ` | Add custom labels to the ServiceMonitor resource| ` {} `
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ metadata:
1111 name : {{ template "oauth2-proxy.fullname" . }}
1212spec :
1313 replicas : {{ .Values.replicaCount }}
14+ {{- if .Values.revisionHistoryLimit }}
15+ revisionHistoryLimit : {{ .Values.revisionHistoryLimit }}
16+ {{- end }}
1417 selector :
1518 matchLabels :
1619 {{- include "oauth2-proxy.selectorLabels" . | indent 6 }}
Original file line number Diff line number Diff line change @@ -229,6 +229,7 @@ deploymentAnnotations: {}
229229podAnnotations : {}
230230podLabels : {}
231231replicaCount : 1
232+ revisionHistoryLimit : 10
232233
233234# # PodDisruptionBudget settings
234235# # ref: https://kubernetes.io/docs/concepts/workloads/pods/disruptions/
You can’t perform that action at this time.
0 commit comments