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
2 changes: 1 addition & 1 deletion charts/clair/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
{{- end }}
initContainers:
- name: pg-ready-wait
image: postgres:11.3
image: "{{ .Values.postgres.image.repository}}:{{ .Values.postgres.image.tag}}"
command: [ "sh", "-c",
"until pg_isready -h {{ .Values.config.postgresHost }} -p {{ .Values.config.postgresPort }};
do echo waiting for database; sleep 1; done;"]
Expand Down
5 changes: 5 additions & 0 deletions charts/clair/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,8 @@ extraEnv:
- name: CLAIR_MODE
value: combo
extraArgs: []

postgres:
image:
repository: quay.io/devtron/postgres
tag: 11.9