feat(template): Add ability to configure volumes

This commit is contained in:
Jim Martens 2024-02-04 23:07:48 +01:00
parent 5718146c0d
commit da375757ea
Signed by: 2martens
GPG Key ID: 47393ABD1F96B7C8
3 changed files with 14 additions and 6 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
name: template
description: A Helm library chart containing common templates, keeping application templates short
type: library
version: 0.4.1
version: 0.5.0
maintainers:
- name: Jim Martens
url: https://2martens.de
@ -10,8 +10,8 @@ sources:
- https://github.com/2martens/cloud-configuration
annotations:
artifacthub.io/changes: |
- kind: fixed
description: Provide volume for tmp directory
- kind: added
description: Add ability to configure volumes/volume mounts
artifacthub.io/signKey: |
fingerprint: F0F153B65BAD467201D7544E47393ABD1F96B7C8
url: https://mafiasi.de/pks/key/47393ABD1F96B7C8.asc

View File

@ -166,7 +166,13 @@ tolerations: []
# Configure affinity, contents will be added verbatim to key affinity in deployment pod template
affinity: {}
# volumes: configure volumes
volumes: []
# volumeMounts: will be mounted in container
volumeMounts: []
# podSpec: will be added at the bottom of the pod template in the deployment
podSpec: {}
# containerSpec: will be added at the bottom of the container specification in the pod template
containerSpec: {}
containerSpec: {}

View File

@ -58,11 +58,12 @@ spec:
- name: {{ .name }}
value: {{ tpl (quote .value) $ }}
{{- end }}
{{- if .Values.application.isSpring }}
volumeMounts:
{{- if .Values.application.isSpring }}
- mountPath: /tmp
name: tmp
{{- end }}
{{- toYaml .Values.volumeMounts | nindent 12 }}
ports:
- name: http
containerPort: {{ .Values.application.port }}
@ -116,12 +117,13 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if .Values.application.isSpring }}
volumes:
{{- if .Values.application.isSpring }}
- name: tmp
emptyDir:
medium: Memory
{{- end }}
{{- toYaml .Values.volumes | nindent 8 }}
{{- with .Values.podSpec }}
{{- toYaml . | nindent 6 }}
{{- end }}