Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,4 @@ Committing with `git commit -s` will add the sign-off at the end of the commit m
- Kamiren Dawkins <kamiren@dawkins.dev>
- Tobias Stenby Brixen <kind.job1347@fastmail.com>
- Eline Henriksen <mains.moon.0x@icloud.com>
- Michael Kruggel <michael.kruggel@defenseunicorns.com>
2 changes: 1 addition & 1 deletion operator/templates/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ spec:
{{- else }}
- name: S3_USE_SSL
# Always use tls when connecting to outside the cluster.
value: "true"
value: "{{ .Values.s3.tls.enabled }}"
- name: S3_ENDPOINT
value: {{ .Values.s3.endpoint | quote }}
- name: S3_BUCKET
Expand Down
2 changes: 2 additions & 0 deletions operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ minio:
s3:
# s3.enabled Enable this and disable minio if you want to directly connect against AWS S3, Google Cloud Storage, DigitalOcean Spaces etc.
enabled: false
tls:
enabled: true
endpoint: "fra1.digitaloceanspaces.com"
bucket: "my-bucket"
# Implicit 443. You probably only need to change this when the system uses a non default port
Expand Down