trying to get anonymous access for buckets working

This commit is contained in:
Max Roby
2023-11-23 13:23:51 +01:00
committed by Chris Lu
parent ac6158818b
commit f33f7c10f0
2 changed files with 15 additions and 6 deletions

View File

@@ -50,11 +50,18 @@ spec:
- "/bin/sh"
- "-ec"
- |
{{- range $.Values.filer.s3.createBuckets }}
{{- range $reg, $props := $.Values.filer.s3.createBuckets }}
exec /bin/echo \
"s3.bucket.create --name {{ . }}" |\
"s3.bucket.create --name {{ $props.name }}" |\
/usr/bin/weed shell
{{- end }}
{{- range $reg, $props := $.Values.filer.s3.createBuckets }}
{{- if $props.anonymousRead }}
exec /bin/echo \
"s3.configure --user anonymous --buckets {{ $props.name }}" |\
/usr/bin/weed shell
{{- end }}
{{- end }}
ports:
- containerPort: {{ .Values.master.port }}
name: swfs-master