Skip to content

Commit

Permalink
PR fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasz-lasut authored and PacoVK committed Feb 7, 2024
1 parent 8f1d3a8 commit 637d09e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/templates/_env.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ Generate Tapir configuration with environment variables.
- name: STORAGE_CONFIG
value: {{ default "s3" . }}
{{- end }}
{{- with $config.storageAccessDuration }}
{{- with $config.storage.storageAccessDuration }}
- name: STORAGE_ACCESS_SESSION_DURATION
value: {{ default 5 . }}
value: "{{ default 5 . }}"
{{- end }}
{{- if (eq $config.storage.type "s3") }}
{{- with $config.storage.s3.bucketName }}
Expand Down Expand Up @@ -58,7 +58,7 @@ Generate Tapir configuration with environment variables.
{{- end }}
{{- with $config.storage.localRegistry.port }}
- name: REGISTRY_PORT
value: {{ default 443 . }}
value: "{{ default 443 . }}"
{{- end }}
{{- end }}
{{- with $config.apiMaxBodySize }}
Expand Down

0 comments on commit 637d09e

Please sign in to comment.