Skip to content

Commit

Permalink
fix: missing default notation for memory limit declaration in helm
Browse files Browse the repository at this point in the history
  • Loading branch information
swollner committed Oct 23, 2023
1 parent b14a0ca commit 919ea80
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
- name: POST_MAX_SIZE
value: {{ .Values.postMaxSize | default "513M" }}
- name: MEMORY_LIMIT
value: {{ .Values.memoryLimit | "1024M" }}
value: {{ .Values.memoryLimit | default "1024M" }}
livenessProbe:
httpGet:
path: /metadata
Expand Down

0 comments on commit 919ea80

Please sign in to comment.