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 @@ -152,12 +152,19 @@ spec:
- name: DB_PASSWORD
value: {{ .Values.streamnative_console.configData.DB_PASSWORD | b64dec | quote }}
{{- end }}
{{- if hasSuffix "-all" .Values.images.streamnative_console.tag }}
- name: DB_BASE
value: sqlite
{{- 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" }}"
{{- with .Values.streamnative_console.extraEnv }}
{{ toYaml . | indent 10 }}
{{- end }}
- name: WEB_SERVICE_URL
value: {{ template "pulsar.web.internal.service.url" . }}
- name: KOP_SERVICE_URL
Expand Down
2 changes: 2 additions & 0 deletions charts/sn-platform-slim/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2398,6 +2398,8 @@ streamnative_console:
OPENAPI_ENABLED: false
# please use base64 encoded your password
DB_PASSWORD: ""
# Extra environment variables for streamnative-console container
extraEnv: []

login:
sso:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,19 @@ spec:
- name: DB_PASSWORD
value: {{ .Values.streamnative_console.configData.DB_PASSWORD | b64dec | quote }}
{{- end }}
{{- if hasSuffix "-all" .Values.images.streamnative_console.tag }}
- name: DB_BASE
value: sqlite
{{- 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" }}"
{{- with .Values.streamnative_console.extraEnv }}
{{ toYaml . | indent 10 }}
{{- end }}
- name: WEB_SERVICE_URL
value: {{ template "pulsar.web.internal.service.url" . }}
- name: KOP_SERVICE_URL
Expand Down
2 changes: 2 additions & 0 deletions charts/sn-platform/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2489,6 +2489,8 @@ streamnative_console:
OPENAPI_ENABLED: false
# please use base64 encoded your password
DB_PASSWORD: ""
# Extra environment variables for streamnative-console container
extraEnv: []

login:
sso:
Expand Down
Loading