Skip to content
Open
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
Binary file added charts/memphis-1.2.4.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion memphis/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ sources:
- https://github.com/superstreamlabs/memphis
- https://www.memphis.dev

version: 1.2.3
version: 1.2.4

appVersion: "1.3.0"

Expand Down
2 changes: 1 addition & 1 deletion memphis/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Thank you for installing {{ .Chart.Name }}!
A dev first event-processing platform.

---------------------------------------------------------------------------------------------------------------------------------------------
Memphis UI can be accessed on the following DNS name from within your cluster: memphis.{{ .Release.Namespace }}.svc.cluster.local:9000
Memphis UI can be accessed on the following DNS name from within your cluster: memphis.{{ .Release.Namespace }}.svc.{{ .Values.k8sClusterDomain }}:9000

To access Memphis using UI/CLI/SDK from localhost, run the below commands:

Expand Down
4 changes: 2 additions & 2 deletions memphis/templates/memphis-rest-gateway.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
- name: k8s-busybox-waits4broker
image: {{ .Values.busybox.image }}
imagePullPolicy: {{ .Values.busybox.pullPolicy }}
command: ['sh', '-c', "until nslookup {{ include "memphis.svcName" . }}.$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).svc.cluster.local; do echo waiting for broker; sleep 2; done"]
command: ['sh', '-c', "until nslookup {{ include "memphis.svcName" . }}.$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).svc.{{ .Values.k8sClusterDomain }} kube-dns.kube-system; do echo waiting for broker; sleep 2; done"]
containers:
- name: memphis-rest-gateway
image: {{ .Values.restGateway.image }}
Expand All @@ -61,7 +61,7 @@ spec:
- name: HTTP_PORT
value: {{ .Values.restGateway.port | quote }}
- name: MEMPHIS_HOST
value: {{ include "memphis.svcName" . }}.{{ include "memphis.namespace" . }}.svc.cluster.local
value: {{ include "memphis.svcName" . }}.{{ include "memphis.namespace" . }}.svc.{{ .Values.k8sClusterDomain }}
- name: USER_PASS_BASED_AUTH
value: {{ .Values.memphis.configFile.userPassBasedAuth | quote }}
- name: ROOT_PASSWORD
Expand Down
4 changes: 2 additions & 2 deletions memphis/templates/memphis_statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,15 +198,15 @@ spec:
env:
- name: NAMESPACE
value: {{ include "memphis.namespace" . }}
command: ['sh', '-c', "until nslookup {{ .Values.metadata.fullnameOverride }}-1.{{ .Values.metadata.fullnameOverride }}-headless.$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).svc.cluster.local; do echo waiting for memphis-metadata; sleep 2; done"]
command: ['sh', '-c', "until nslookup {{ .Values.metadata.fullnameOverride }}-1.{{ .Values.metadata.fullnameOverride }}-headless.$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).svc.{{ .Values.k8sClusterDomain }}; do echo waiting for memphis-metadata; sleep 2; done"]
{{- else }}
- name: memphis-metadata-readiness
image: {{ .Values.busybox.image }}
imagePullPolicy: {{ .Values.busybox.pullPolicy }}
env:
- name: NAMESPACE
value: {{ include "memphis.namespace" . }}
command: ['sh', '-c', "until nslookup {{ .Values.metadata.fullnameOverride }}-0.{{ .Values.metadata.fullnameOverride }}-headless.$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).svc.cluster.local; do echo waiting for memphis-metadata; sleep 2; done"]
command: ['sh', '-c', "until nslookup {{ .Values.metadata.fullnameOverride }}-0.{{ .Values.metadata.fullnameOverride }}-headless.$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).svc.{{ .Values.k8sClusterDomain }}; do echo waiting for memphis-metadata; sleep 2; done"]
{{- end }}
{{- end }}

Expand Down