Added ephemeralStorage to pod

This commit is contained in:
Dana Harrison 2021-09-29 22:28:28 -04:00
parent 49ac3a4c46
commit 83da4a17b2
2 changed files with 5 additions and 1 deletions

View File

@ -34,6 +34,9 @@ spec:
volumeMounts: volumeMounts:
- mountPath: {{ .Values.containerMountPath }} - mountPath: {{ .Values.containerMountPath }}
name: {{ .Values.containerMountName }} name: {{ .Values.containerMountName }}
resources:
limits:
ephemeral-storage: {{ .Values.ephemeralStorage }}
volumes: volumes:
- name: {{ .Values.containerMountName }} - name: {{ .Values.containerMountName }}
hostPath: hostPath:

View File

@ -7,4 +7,5 @@ serverMessage: Welcome message goes here!
containerMountPath: /jam containerMountPath: /jam
containerMountName: jam containerMountName: jam
#Location on your filesystem to associate the /jam dir #Location on your filesystem to associate the /jam dir
localMountPath: /var/log localMountPath: /var/log
ephemeralStorage: 1G