Skip to content

Commit

Permalink
Merge pull request #212 from pierluigilenoci/chart_inconsistencies
Browse files Browse the repository at this point in the history
Fixed chart inconsistencies
  • Loading branch information
pierluigilenoci committed May 31, 2024
2 parents 756fde5 + ba6d0ee commit dad6b51
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions helm/oauth2-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: oauth2-proxy
version: 7.7.0
version: 7.7.1
apiVersion: v2
appVersion: 7.6.0
home: https://oauth2-proxy.github.io/oauth2-proxy/
Expand Down Expand Up @@ -34,8 +34,8 @@ maintainers:
kubeVersion: ">=1.9.0-0"
annotations:
artifacthub.io/changes: |
- kind: added
description: option to configure traffic policy for the service
- kind: fixed
description: fixed chart inconsistencies
links:
- name: Github PR
url: https://github.com/oauth2-proxy/manifests/pull/190
url: https://github.com/oauth2-proxy/manifests/pull/212
4 changes: 3 additions & 1 deletion helm/oauth2-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ spec:
template:
metadata:
annotations:
{{- if .Values.config.configFile }}
checksum/config: {{ tpl .Values.config.configFile $ | sha256sum }}
{{- end }}
{{- if .Values.alphaConfig.enabled }}
checksum/alpha-config: {{ include "oauth2-proxy.alpha-config" . | sha256sum }}
{{- end }}
Expand Down Expand Up @@ -66,7 +68,7 @@ spec:
- name: wait-for-redis
image: "{{ .Values.initContainers.waitForRedis.image.repository }}:{{ .Values.initContainers.waitForRedis.image.tag }}"
imagePullPolicy: {{ .Values.initContainers.waitForRedis.image.pullPolicy }}
command: ["/bin/sh", "-c", "/scripts/check-redis.sh"]
command: ["/bin/sh", "-c", "/scripts/check-redis.sh"]
env:
- name: TOTAL_RETRY_TIME
value: "{{ .Values.initContainers.waitForRedis.timeout }}"
Expand Down

0 comments on commit dad6b51

Please sign in to comment.