-
Notifications
You must be signed in to change notification settings - Fork 179
Upgraded embedded minio chart to latest release v11.9.4 (closes #755) #1340
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| dependencies: | ||
| - name: minio | ||
| repository: https://helm.min.io/ | ||
| version: 7.1.2 | ||
| digest: sha256:6fee974baf705caae258636dbd7b2b89f14230b9ae28aa20da4643d8292c399b | ||
| generated: "2020-10-07T11:26:59.229968+02:00" | ||
| repository: https://charts.bitnami.com/bitnami | ||
| version: 11.9.4 | ||
| digest: sha256:dcd5c66891556818e8955c7aabd358ca8c87928291b1918611cb333184dd5109 | ||
| generated: "2022-09-03T17:30:31.769197+02:00" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -75,14 +75,14 @@ spec: | |
| valueFrom: | ||
| secretKeyRef: | ||
| name: "{{ .Release.Name }}-minio" | ||
| key: accesskey | ||
| key: root-user | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will also require tweaks to the installation docs: https://www.securecodebox.io/docs/getting-started/installation#accessing-the-included-minio-instance
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good Point, thx for the hint |
||
| - name: MINIO_SECRET_KEY | ||
| valueFrom: | ||
| secretKeyRef: | ||
| name: "{{ .Release.Name }}-minio" | ||
| key: secretkey | ||
| key: root-password | ||
| - name: S3_BUCKET | ||
| value: {{ .Values.minio.defaultBucket.name }} | ||
| value: {{ .Values.minio.defaultBuckets }} | ||
| {{- else }} | ||
| - name: S3_USE_SSL | ||
| # Always use tls when connecting to outside the cluster. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there are reason why you use the bitnami chart instead of the official chart mentioned here? The discussion never came to a final conclusion on what to use.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i tried the official chart first, but it didn't work and seems to lack some support. Thats why i switched to the bitnami chart. It leaves the impression of a more stable and mature setup.