Skip to content

Commit de8ae62

Browse files
committed
Added all other config options to helm chart.
1 parent 6bd49f9 commit de8ae62

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

charts/stac-manager/templates/deployment.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ spec:
4545
value: {{ .Values.stacApi | required "Please provide a value for stacApi" }}
4646
- name: PUBLIC_URL
4747
value: {{ .Values.publicUrl | required "Please provide a value for publicUrl" }}
48+
{{ if .Values.stacBrowser }}
49+
- name: REACT_APP_STAC_BROWSER
50+
value: {{ .Values.stacBrowser }}
51+
{{ end }}
4852
{{ if .Values.oidc }}
4953
- name: REACT_APP_KEYCLOAK_URL
5054
value: {{ .Values.oidc.providerUrl | required "Please provide a value for oidc.providerUrl" }}
@@ -53,6 +57,22 @@ spec:
5357
- name: REACT_APP_KEYCLOAK_REALM
5458
value: {{ .Values.oidc.realm | required "Please provide a value for oidc.realm" }}
5559
{{ end }}
60+
{{ if .Values.appTitle }}
61+
- name: APP_TITLE
62+
value: {{ .Values.appTitle }}
63+
{{ end }}
64+
{{ if .Values.appDescription }}
65+
- name: APP_DESCRIPTION
66+
value: {{ .Values.appDescription }}
67+
{{ end }}
68+
{{ if .Values.primaryColor }}
69+
- name: PRIMARY_COLOR
70+
value: {{ .Values.primaryColor }}
71+
{{ end }}
72+
{{ if .Values.secondaryColor }}
73+
- name: SECONDARY_COLOR
74+
value: {{ .Values.secondaryColor }}
75+
{{ end }}
5676
livenessProbe:
5777
{{- toYaml .Values.livenessProbe | nindent 12 }}
5878
readinessProbe:

0 commit comments

Comments
 (0)