From 43fcfff735eb4bfdb2cf4cf175e7fedbd067e4de Mon Sep 17 00:00:00 2001 From: Thumbscrew Date: Tue, 11 Mar 2025 17:08:30 +0000 Subject: [PATCH] fix(freshrss): update OIDC_ENABLED env var to 1 as true does not seem to work (#108) --- charts/freshrss/Chart.yaml | 2 +- charts/freshrss/README.md | 2 +- charts/freshrss/templates/deployment.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/freshrss/Chart.yaml b/charts/freshrss/Chart.yaml index 087511e..9c5bc40 100644 --- a/charts/freshrss/Chart.yaml +++ b/charts/freshrss/Chart.yaml @@ -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.0 +version: 1.6.1 # 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 diff --git a/charts/freshrss/README.md b/charts/freshrss/README.md index 440df0f..dd30120 100644 --- a/charts/freshrss/README.md +++ b/charts/freshrss/README.md @@ -1,6 +1,6 @@ # freshrss -![Version: 1.6.0](https://img.shields.io/badge/Version-1.6.0-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.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) A Helm chart for FreshRSS diff --git a/charts/freshrss/templates/deployment.yaml b/charts/freshrss/templates/deployment.yaml index 291c7cb..a1944c7 100644 --- a/charts/freshrss/templates/deployment.yaml +++ b/charts/freshrss/templates/deployment.yaml @@ -72,7 +72,7 @@ spec: {{- end }} {{- if .Values.freshrss.oidc.enabled }} - name: OIDC_ENABLED - value: "true" + value: "1" {{- with .Values.freshrss.oidc }} - name: OIDC_PROVIDER_METADATA_URL value: {{ .providerMetadataUrl }}