fix(freshrss): liveness and readiness probes should use the oidc path when OIDC is enabled (#109)

This commit is contained in:
James 2025-03-15 14:00:15 +00:00 committed by GitHub
parent 43fcfff735
commit 37a2e2975f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 3 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
# freshrss # freshrss
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.25.0](https://img.shields.io/badge/AppVersion-1.25.0-informational?style=flat-square) ![Version: 1.6.2](https://img.shields.io/badge/Version-1.6.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.25.0](https://img.shields.io/badge/AppVersion-1.25.0-informational?style=flat-square)
A Helm chart for FreshRSS A Helm chart for FreshRSS

View File

@ -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 }}