Skip to content

Commit

Permalink
buildbuddy: fix wrong init-mysql command (#106)
Browse files Browse the repository at this point in the history
This was accidentally added in
#98.

Reported-by: Florian Berchtold <[email protected]>
  • Loading branch information
sluongng authored Aug 6, 2024
1 parent 94cdace commit 40a88ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/buildbuddy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
- name: "init-mysql"
image: "{{ .Values.initContainerImage.repository }}:{{ .Values.initContainerImage.tag }}"
imagePullPolicy: {{ .Values.initContainerImage.imagePullPolicy }}
command: ["sh", "-c", "until nc -z http://{{ .Release.Name }}-mysql 3306; do echo waiting for {{ .Release.Name }}-mysql service; sleep 5; done;"]
command: ["sh", "-c", "until nc -z {{ .Release.Name }}-mysql 3306; do echo waiting for {{ .Release.Name }}-mysql service; sleep 5; done;"]
{{- end }}
{{- if .Values.extraInitContainers }}
{{- .Values.extraInitContainers | toYaml | nindent 6 }}
Expand Down

0 comments on commit 40a88ea

Please sign in to comment.