helm安裝MINIO檔案伺服器

渣渣輝發表於2019-07-28

MinIO Quickstart Guide

MinIO 是一個基於Apache License v2.0開源協議的物件儲存服務。它相容亞馬遜S3雲端儲存服務介面,非常適合於儲存大容量非結構化的資料,例如圖片、視訊、日誌檔案、備份資料和容器/虛擬機器映象等,而一個物件檔案可以是任意大小,從幾kb到最大5T不等。

MinIO是一個非常輕量的服務,可以很簡單的和其他應用的結合,類似 NodeJS, Redis 或者 MySQL。

中文官方地址:https://docs.min.io/cn/minio-quickstart-guide.html

部署

chart地址:https://github.com/helm/charts/tree/master/stable/minio

1、編寫values.yaml檔案

clusterDomain: cluster.local
image:
  repository: minio/minio
  tag: RELEASE.2019-05-14T23-57-45Z
  pullPolicy: IfNotPresent
mcImage:
  repository: minio/mc
  tag: RELEASE.2019-05-01T23-27-44Z
  pullPolicy: IfNotPresent
mode: standalone
DeploymentUpdate:
  type: RollingUpdate
  maxUnavailable: 0
  maxSurge: 100%
StatefulSetUpdate:
  updateStrategy: RollingUpdate
priorityClassName: ""
existingSecret: ""
accessKey: "admin123A"
secretKey: "admin123A"
configPath: "/root/.minio/"
configPathmc: "/root/.mc/"
mountPath: "/export"
replicas: 4
tls:
  enabled: false
  certSecret: ""
  publicCrt: public.crt
  privateKey: private.key
persistence:
  enabled: true
  storageClass: managed-nfs-storage
  accessMode: "ReadWriteOnce"
  size: 10Gi
  subPath: ""
service:
  type: NodePort
  port: 9000
  nodePort: 31311
  annotations: {}

 2、安裝chart

$ helm install --name minio stable/minio -f values.yaml

 3、登入http://NodePort_ip:31311/

賬號密碼:admin123A/admin123A

4、首先需要建立一個資料夾然後才能上傳檔案

 

相關文章