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
4 changes: 2 additions & 2 deletions charts/openproject/templates/seeder-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ spec:
claimName: {{ if .Values.persistence.existingClaim }}{{ .Values.persistence.existingClaim }}{{- else }}{{ include "common.names.fullname" . }}{{- end }}
{{- end }}
{{- include "openproject.extraVolumes" . | indent 8 }}
initContainers:
initContainers: []
containers:
- name: check-db-ready
image: "{{ .Values.dbInit.image.registry }}/{{ .Values.dbInit.image.repository }}:{{ .Values.dbInit.image.tag }}"
imagePullPolicy: {{ .Values.dbInit.image.imagePullPolicy }}
Expand All @@ -61,7 +62,6 @@ spec:
volumeMounts:
{{- include "openproject.tmpVolumeMounts" . | indent 12 }}
{{- include "openproject.containerSecurityContext" . | indent 10 }}
containers:
- name: seeder
image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}{{ if .Values.image.sha256 }}@sha256:{{ .Values.image.sha256 }}{{ else }}:{{ .Values.image.tag }}{{ end }}"
imagePullPolicy: {{ .Values.image.imagePullPolicy }}
Expand Down
4 changes: 2 additions & 2 deletions charts/openproject/templates/worker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ spec:
claimName: {{ if .Values.persistence.existingClaim }}{{ .Values.persistence.existingClaim }}{{- else }}{{ include "common.names.fullname" . }}{{- end }}
{{- end }}
{{- include "openproject.extraVolumes" . | indent 8 }}
initContainers:
initContainers: []
containers:
- name: wait-for-db
{{- include "openproject.containerSecurityContext" . | indent 10 }}
image: {{ include "openproject.image" . }}
Expand All @@ -81,7 +82,6 @@ spec:
{{- toYaml .Values.appInit.resources | nindent 12 }}
volumeMounts:
{{- include "openproject.tmpVolumeMounts" . | indent 12 }}
containers:
- name: "openproject"
{{- include "openproject.containerSecurityContext" . | indent 10 }}
image: {{ include "openproject.image" . }}
Expand Down