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

Latest #213

Merged
merged 12 commits into from
Jan 3, 2024
9 changes: 4 additions & 5 deletions memphis/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@

__ __ _ _
__ __ _ _
| \/ | ___ _ __ ___ _ __ | |__ (_)___
| |\/| |/ _ \ '_ ` _ \| '_ \| '_ \| / __|
| | | | __/ | | | | | |_) | | | | \__ \
|_| |_|\___|_| |_| |_| .__/|_| |_|_|___/
|_|

Melvis thank you for installing {{ .Chart.Name }}!
Thank you for installing {{ .Chart.Name }}!
A dev first event-processing platform.

---------------------------------------------------------------------------------------------------------------------------------------------
Expand Down Expand Up @@ -34,9 +33,9 @@ Deployment Information
-------------------------
## Secrets ##
UI/CLI/SDK root username - root
UI/CLI root Password - kubectl get secret memphis-creds -n {{ .Release.Namespace }} -o jsonpath="{.data.ROOT_PASSWORD}" | base64 --decode
UI/CLI root Password - kubectl get secret {{ .Values.memphis.creds.secretConfig.name }} -n {{ .Release.Namespace }} -o jsonpath="{.data.ROOT_PASSWORD}" | base64 --decode
{{- if eq .Values.user_pass_based_auth false }}
SDK root connection token - kubectl get secret memphis-creds -n {{ .Release.Namespace }} -o jsonpath="{.data.CONNECTION_TOKEN}" | base64 --decode
SDK root connection token - kubectl get secret {{ .Values.memphis.creds.secretConfig.name }} -n {{ .Release.Namespace }} -o jsonpath="{.data.CONNECTION_TOKEN}" | base64 --decode
{{- end }}


Expand Down
6 changes: 5 additions & 1 deletion memphis/templates/memphis_statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,10 @@ spec:
key: {{ .key }}
{{- end }}
{{- end }}
{{- with .Values.websocket }}
- name: WS_HOST
value: {{ .host }}:{{ .port }}
{{- end }}
- name: USER_PASS_BASED_AUTH
value: {{ .Values.memphis.configFile.userPassBasedAuth | quote }}
- name: LOGS_RETENTION_IN_DAYS
Expand Down Expand Up @@ -344,7 +348,7 @@ spec:
- name: METADATA_DB_PASS
valueFrom:
secretKeyRef:
name: "memphis-metadata"
name: {{ if .Values.metadata.postgresql.existingSecret }}{{ .Values.metadata.postgresql.existingSecret | quote }}{{ else }}{{ "memphis-metadata" }}{{ end }}
key: password
- name: METADATA_DB_DBNAME
value: "memphis"
Expand Down
8 changes: 4 additions & 4 deletions memphis/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -480,13 +480,11 @@ auth:
websocket:
enabled: true
port: 7770
# Websocket URL configuration.
host: localhost
noTLS: true
sameOrigin: false
allowedOrigins: []
#auth:
# token: memphis
# user: ""
# pass: ""
appProtocol:
enabled: false

Expand Down Expand Up @@ -520,6 +518,7 @@ metadata:
initdbScripts:
init.sql: |
CREATE DATABASE memphis;
existingSecret: ""
fullnameOverride: memphis-metadata
pgpool:
image:
Expand All @@ -530,6 +529,7 @@ metadata:
certFilename: ""
certKeyFilename: ""
certCAFilename: ""
existingSecret: ""
external:
enabled: false
dbTlsMutual: true
Expand Down
2 changes: 1 addition & 1 deletion version.conf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0
1.4.1