We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6b6d7d commit 11bd261Copy full SHA for 11bd261
s3-nginx-proxy-chart/templates/deployment.yaml
@@ -39,8 +39,12 @@ spec:
39
sizeLimit: 10Mi
40
- name: nginx-cache
41
emptyDir:
42
- medium: {{ .Values.cache.medium }}
43
- sizeLimit: {{ .Values.cache.sizeLimit }}
+ {{- with .Values.cache.medium }}
+ medium: {{ . }}
44
+ {{- end }}
45
+ {{- with .Values.cache.sizeLimit }}
46
+ sizeLimit: {{ . }}
47
48
containers:
49
- name: {{ .Chart.Name }}-nginx
50
securityContext:
s3-nginx-proxy-chart/values.yaml
@@ -13,7 +13,7 @@ virtualHosts:
13
region: us-west-1
14
15
cache:
16
- medium: Default
+ # medium: Memory
17
sizeLimit: 5Gi
18
expiry: 60m
19
0 commit comments