mirror of
https://github.com/Thumbscrew/k8s-charts.git
synced 2025-04-04 14:23:38 +00:00
fix(freshrss): liveness and readiness probes should use the oidc path when OIDC is enabled (#109)
This commit is contained in:
parent
43fcfff735
commit
37a2e2975f
@ -23,7 +23,7 @@ type: application
|
||||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||
version: 1.6.1
|
||||
version: 1.6.2
|
||||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application. Versions are not expected to
|
||||
|
@ -1,6 +1,6 @@
|
||||
# freshrss
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
A Helm chart for FreshRSS
|
||||
|
||||
|
@ -113,7 +113,6 @@ spec:
|
||||
value: {{ printf "%s" (join " " .xForwardedHeaders) }}
|
||||
{{- end }}
|
||||
- name: OIDC_SESSION_INACTIVITY_TIMEOUT
|
||||
# value: {{ printf "%d" (add .session.inactivityTimeout) }}
|
||||
value: "{{ .session.inactivityTimeout }}"
|
||||
{{- if ge .session.maxDuration 0.0 }}
|
||||
- name: OIDC_SESSION_MAX_DURATION
|
||||
@ -127,12 +126,20 @@ spec:
|
||||
{{- end }}
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
{{- if .Values.freshrss.oidc.enabled }}
|
||||
path: /i/oidc/
|
||||
{{- else }}
|
||||
path: /i/
|
||||
{{- end }}
|
||||
port: http
|
||||
initialDelaySeconds: 30
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
{{- if .Values.freshrss.oidc.enabled }}
|
||||
path: /i/oidc/
|
||||
{{- else }}
|
||||
path: /i/
|
||||
{{- end }}
|
||||
port: http
|
||||
resources:
|
||||
{{- toYaml .Values.resources | nindent 12 }}
|
||||
|
Loading…
Reference in New Issue
Block a user