Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addedenv variable to values.yaml later accessed through webui.yaml #39

Merged
merged 3 commits into from
Jul 29, 2024
Merged
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
2 changes: 2 additions & 0 deletions charts/ecosystem/templates/webui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 13 additions & 0 deletions charts/ecosystem/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down