From c21e4c42769cb12fbf8b46a5a6cd3ace501cef05 Mon Sep 17 00:00:00 2001 From: Volodymyr Stoiko Date: Mon, 18 May 2026 22:11:34 +0000 Subject: [PATCH] auth: emit CHART_VERSION into hub ConfigMap (Phase V) Hub commit 51abc954 reads this key on first SyncConfig and warns when its embedded version.Ver disagrees with the chart at the major component. Provided alongside as the chart-side companion to keep both sides on one PR per repo on the permissions-refactoring branch. --- helm-chart/templates/12-config-map.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/helm-chart/templates/12-config-map.yaml b/helm-chart/templates/12-config-map.yaml index 1849af543..27c677061 100644 --- a/helm-chart/templates/12-config-map.yaml +++ b/helm-chart/templates/12-config-map.yaml @@ -33,6 +33,7 @@ data: AUTH_DEFAULT_ROLE: '{{ default "" .Values.tap.auth.defaultRole }}' AUTH_GROUP_MAPPING: '{{ default (dict) .Values.tap.auth.groupMapping | toJson }}' AUTH_ROLES: '{{ default (dict) .Values.tap.auth.roles | toJson }}' + CHART_VERSION: '{{ .Chart.Version }}' AUTH_OIDC_ISSUER: '{{ default "not set" (((.Values.tap).auth).oidc).issuer }}' AUTH_OIDC_REFRESH_TOKEN_LIFETIME: '{{ default "3960h" (((.Values.tap).auth).oidc).refreshTokenLifetime }}' AUTH_OIDC_STATE_PARAM_EXPIRY: '{{ default "10m" (((.Values.tap).auth).oidc).oauth2StateParamExpiry }}'