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
2 changes: 1 addition & 1 deletion charts/mlrun-ce/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: mlrun-ce
version: 0.11.0-rc.24
version: 0.11.0-rc.25
description: MLRun Open Source Stack
home: https://iguazio.com
icon: https://www.iguazio.com/wp-content/uploads/2019/10/Iguazio-Logo.png
Expand Down
2 changes: 1 addition & 1 deletion charts/mlrun-ce/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ SeaweedFS Admin UI is available at:
{{ .Values.global.externalHostAddress }}:{{ .Values.seaweedfs.adminService.nodePort | default 30093 }}
{{- end }}
{{- end }}
- S3 credentials: minio / minio123
- S3 credentials: {{ .Values.s3.accessKey }} / {{ .Values.s3.secretKey }}
{{- end }}
{{- end }}

Expand Down
8 changes: 4 additions & 4 deletions charts/mlrun-ce/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ global:
# to access the S3-compatible storage backend (SeaweedFS)
# =============================================================================
s3:
accessKey: "minio"
secretKey: "minio123"
accessKey: "seaweed"
secretKey: "seaweed123"
bucket: "mlrun"

nuclio:
Expand Down Expand Up @@ -365,8 +365,8 @@ seaweedfs:
enabled: true # Default is false
port: 23646
secret:
adminUser: "minio"
adminPassword: "minio123"
adminUser: "seaweed"
adminPassword: "seaweed123"
dataDir: "/data"
# Storage: use PVC instead of default emptyDir
data:
Expand Down
Loading