Skip to content

Commit

Permalink
Merge branch 'main' into traffic-policy
Browse files Browse the repository at this point in the history
  • Loading branch information
pierluigilenoci committed May 1, 2024
2 parents 64c28ec + 1d09e96 commit 677e584
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
6 changes: 3 additions & 3 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.5.0
version: 7.5.3
apiVersion: v2
appVersion: 7.6.0
home: https://oauth2-proxy.github.io/oauth2-proxy/
Expand Down Expand Up @@ -35,7 +35,7 @@ kubeVersion: ">=1.9.0-0"
annotations:
artifacthub.io/changes: |
- kind: changed
description: Improved the readiness check for Redis to support all types
description: Redis parameters update in values
links:
- name: Github PR
url: https://github.com/oauth2-proxy/manifests/pull/197
url: https://github.com/oauth2-proxy/manifests/issues/202
4 changes: 4 additions & 0 deletions helm/oauth2-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,10 @@ spec:
{{- end }}
{{- if .Values.extraEnv }}
{{ tpl (toYaml .Values.extraEnv) . | indent 8 }}
{{- end }}
{{- if .Values.envFrom }}
envFrom:
{{ tpl (toYaml .Values.envFrom) . | indent 8 }}
{{- end }}
ports:
{{- if .Values.containerPort }}
Expand Down
2 changes: 1 addition & 1 deletion helm/oauth2-proxy/templates/servicemonitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ spec:
{{- end }}
{{- with .Values.metrics.serviceMonitor.tlsConfig }}
tlsConfig:
{{- toYaml .| nindent 4 }}
{{- toYaml .| nindent 6 }}
{{- end }}
{{- with .Values.metrics.serviceMonitor.metricRelabelings }}
metricRelabelings:
Expand Down
17 changes: 14 additions & 3 deletions helm/oauth2-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,19 @@ image:
extraArgs: {}
extraEnv: []

envFrom: []
# Load environment variables from a ConfigMap(s) and/or Secret(s)
# that already exists (created and managed by you).
# ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-pod-configmap/#configure-all-key-value-pairs-in-a-configmap-as-container-environment-variables
#
# PS: Changes in these ConfigMaps or Secrets will not be automatically
# detected and you must manually restart the relevant Pods after changes.
#
# - configMapRef:
# name: special-config
# - secretRef:
# name: special-config-secret

# -- Custom labels to add into metadata
customLabels: {}

Expand Down Expand Up @@ -360,9 +373,7 @@ redis:
# Redis specific helm chart settings, please see:
# https://github.com/bitnami/charts/tree/master/bitnami/redis#parameters
# redisPort: 6379
# cluster:
# enabled: false
# slaveCount: 1
# architecture: standalone

# Enables apiVersion deprecation checks
checkDeprecation: true
Expand Down

0 comments on commit 677e584

Please sign in to comment.