Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## unreleased
- Changed fr
- Add auth_config.json mount to frontend for logout URL (incore-ui TODO: redirect to Keycloak on logout)

## 1.38.0 - 2025-12-15
- IN-CORE release 6.3.0

Expand Down
4 changes: 4 additions & 0 deletions templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ data:
{
"GA_KEY": "{{- .Values.google_analytics }}"
}
auth_config.json: |
{
"logoutUrl": {{ .Values.auth.logoutUrl | default "" | quote }}
}
3 changes: 3 additions & 0 deletions templates/frontend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ spec:
- name: {{ include "incore.name" . }}-config
mountPath: /usr/share/nginx/html/config/config.json
subPath: ga_key.json
- name: {{ include "incore.name" . }}-config
mountPath: /usr/share/nginx/html/config/auth_config.json
subPath: auth_config.json
livenessProbe:
httpGet:
path: /
Expand Down
Loading