Skip to content

Commit

Permalink
Update deployment.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
geevanakash authored Jan 25, 2024
1 parent 665642a commit 93472de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
name: {{ include "plausible-analytics.fullname" . }}
initContainers:
- name: wait-for-postgres
image: postgres:13.3-alpine
image: "{{ .Values.initContainers.postgresql.image.repository }}:{{ .Values.initContainers.postgresql.image.tag | latest }}"
command: ['sh', '/scripts/wait-for-postgres.sh']
env:
- name: DATABASE_URL
Expand All @@ -48,7 +48,7 @@ spec:
mountPath: /scripts
{{- if not .Values.initContainers.curl.enabled }}
- name: wait-for-clickhouse
image: bitnami/clickhouse:23.3.9
image: "{{ .Values.initContainers.clickhouse.image.repository }}:{{ .Values.initContainers.clickhouse.image.tag | latest }}"
command: ['sh', '/scripts/wait-for-clickhouse.sh']
env:
- name: CLICKHOUSE_DATABASE_URL
Expand All @@ -59,7 +59,7 @@ spec:
{{- end }}
{{- if .Values.initContainers.curl.enabled }}
- name: wait-for-clickhouse
image: curlimages/curl:8.2.1
image: "{{ .Values.initContainers.curl.image.repository }}:{{ .Values.initContainers.curl.image.tag | latest }}"
command: ['sh', '/scripts/wait-for-clickhouse-with-curl.sh']
env:
- name: CLICKHOUSE_DATABASE_URL
Expand Down

0 comments on commit 93472de

Please sign in to comment.