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
|
# 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.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# 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
|
# 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
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# freshrss
|
# freshrss
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
A Helm chart for FreshRSS
|
A Helm chart for FreshRSS
|
||||||
|
|
||||||
|
@ -113,7 +113,6 @@ spec:
|
|||||||
value: {{ printf "%s" (join " " .xForwardedHeaders) }}
|
value: {{ printf "%s" (join " " .xForwardedHeaders) }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
- name: OIDC_SESSION_INACTIVITY_TIMEOUT
|
- name: OIDC_SESSION_INACTIVITY_TIMEOUT
|
||||||
# value: {{ printf "%d" (add .session.inactivityTimeout) }}
|
|
||||||
value: "{{ .session.inactivityTimeout }}"
|
value: "{{ .session.inactivityTimeout }}"
|
||||||
{{- if ge .session.maxDuration 0.0 }}
|
{{- if ge .session.maxDuration 0.0 }}
|
||||||
- name: OIDC_SESSION_MAX_DURATION
|
- name: OIDC_SESSION_MAX_DURATION
|
||||||
@ -127,12 +126,20 @@ spec:
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
{{- if .Values.freshrss.oidc.enabled }}
|
||||||
|
path: /i/oidc/
|
||||||
|
{{- else }}
|
||||||
path: /i/
|
path: /i/
|
||||||
|
{{- end }}
|
||||||
port: http
|
port: http
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
{{- if .Values.freshrss.oidc.enabled }}
|
||||||
|
path: /i/oidc/
|
||||||
|
{{- else }}
|
||||||
path: /i/
|
path: /i/
|
||||||
|
{{- end }}
|
||||||
port: http
|
port: http
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
{{- toYaml .Values.resources | nindent 12 }}
|
||||||
|
Loading…
Reference in New Issue
Block a user