diff --git a/charts/ecosystem/templates/webui.yaml b/charts/ecosystem/templates/webui.yaml index 96894c9..a5769fa 100644 --- a/charts/ecosystem/templates/webui.yaml +++ b/charts/ecosystem/templates/webui.yaml @@ -52,6 +52,8 @@ spec: value: {{ include "ecosystem.host.url" . }} - name: GALASA_WEBUI_CLIENT_ID value: galasa-webui + - name: NEXT_PUBLIC_GALASA_SERVICE_NAME # The variable should have a NEXT_PUBLIC prefix to be used on the client side by Next JS + value: {{ .Values.galasaServiceName}} {{- if .Values.ingress.caCertSecretName }} - name: NODE_EXTRA_CA_CERTS value: /etc/ssl/certs/cacerts/cacerts.pem diff --git a/charts/ecosystem/values.yaml b/charts/ecosystem/values.yaml index 5043045..d4bb01a 100644 --- a/charts/ecosystem/values.yaml +++ b/charts/ecosystem/values.yaml @@ -16,6 +16,19 @@ externalHostname: "example.com" galasaVersion: "0.36.0" # # +# +# Name of the galasa service which will be shown as the title of the web user interface page. +# Any bookmarks taken by users in their browsers will also receive this name. +# Making this name distict helps users identify which Galasa service they are using. +# If they are all called the same thing, users with access to multiple systems may find that +# confusing. +# It is RECOMMENDED that this value is changed to be unique, +# For example: Galasa Service XYZ +# +galasaServiceName: Galasa Service +# +# +# # The container registry the Galasa images can be found in # galasaRegistry: "icr.io/galasadev"