Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,14 @@ spec:
- name: GLOBAL_RESOURCE_READ_ONLY
value: "true"
{{- end }}
{{- if .Values.streamnative_console.configData.DB_PASSWORD }}
- name: DB_PASSWORD
value: {{ .Values.streamnative_console.configData.DB_PASSWORD | b64dec | quote }}
{{- end }}
{{- if .Values.streamnative_console.configData.NEW_PASSWORD }}
- name: NEW_PASSWORD
value: {{ .Values.streamnative_console.configData.NEW_PASSWORD | b64dec | quote }}
{{- end }}
- name: CONNECTOR_ENABLED
value: "{{ .Values.streamnative_console.configData.CONNECTOR_ENABLED | default "true" }}"
- name: WEB_SERVICE_URL
Expand Down
4 changes: 3 additions & 1 deletion charts/sn-platform-slim/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ images:
pullPolicy: IfNotPresent
streamnative_console:
repository: streamnative/private-cloud-console
tag: "v2.3.9"
tag: "v2.3.15"
pullPolicy: IfNotPresent
hasCommand: false
node_exporter:
Expand Down Expand Up @@ -2173,6 +2173,8 @@ streamnative_console:
GRAFANA_AUTH_PROXY_USER: ""
CONNECTOR_ENABLED: true
OPENAPI_ENABLED: false
# please use base64 encoded your password
DB_PASSWORD: ""

login:
sso:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,14 @@ spec:
- name: GLOBAL_RESOURCE_READ_ONLY
value: "true"
{{- end }}
{{- if .Values.streamnative_console.configData.DB_PASSWORD }}
- name: DB_PASSWORD
value: {{ .Values.streamnative_console.configData.DB_PASSWORD | b64dec | quote }}
{{- end }}
{{- if .Values.streamnative_console.configData.NEW_PASSWORD }}
- name: NEW_PASSWORD
value: {{ .Values.streamnative_console.configData.NEW_PASSWORD | b64dec | quote }}
{{- end }}
- name: CONNECTOR_ENABLED
value: "{{ .Values.streamnative_console.configData.CONNECTOR_ENABLED | default "true" }}"
- name: WEB_SERVICE_URL
Expand Down
4 changes: 3 additions & 1 deletion charts/sn-platform/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ images:
pullPolicy: IfNotPresent
streamnative_console:
repository: streamnative/private-cloud-console
tag: "v2.3.9"
tag: "v2.3.15"
pullPolicy: IfNotPresent
hasCommand: false
node_exporter:
Expand Down Expand Up @@ -2264,6 +2264,8 @@ streamnative_console:
CONNECTOR_ENABLED: true
CUSTOM_PAYLOAD_ENABLED: false
OPENAPI_ENABLED: false
# please use base64 encoded your password
DB_PASSWORD: ""

login:
sso:
Expand Down
Loading