Skip to content

Commit

Permalink
Merge pull request #43 from mcc138/patch-1
Browse files Browse the repository at this point in the history
Add volumes and volumeMounts to job
  • Loading branch information
sapkra authored Mar 2, 2022
2 parents 7202e26 + 7805ddc commit 41ee8f7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions templates/jvb/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ spec:
{{- end }}
resources:
{{- toYaml .Values.jvb.resources | nindent 12 }}
{{- with .Values.jvb.extraVolumeMounts }}
volumeMounts:
{{- toYaml . | nindent 10 }}
{{- end }}

{{- if .Values.jvb.metrics.enabled }}
- name: metrics
Expand Down Expand Up @@ -152,3 +156,7 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.jvb.extraVolumes }}
volumes:
{{- toYaml . | nindent 8 }}
{{- end }}

0 comments on commit 41ee8f7

Please sign in to comment.