MinIO 是一個基於Apache License v2.0開源協議的對象存儲服務。它兼容亞馬遜S3雲存儲服務接口,很是適合於存儲大容量非結構化的數據,例如圖片、視頻、日誌文件、備份數據和容器/虛擬機鏡像等,而一個對象文件能夠是任意大小,從幾kb到最大5T不等。html
MinIO是一個很是輕量的服務,能夠很簡單的和其餘應用的結合,相似 NodeJS, Redis 或者 MySQL。node
中文官方地址:https://docs.min.io/cn/minio-quickstart-guide.htmlgit
chart地址:https://github.com/helm/charts/tree/master/stable/miniogithub
一、編寫values.yaml文件bash
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: {}
二、安裝chartide
$ helm install --name minio stable/minio -f values.yaml
三、登陸http://NodePort_ip:31311/ui
帳號密碼:admin123A/admin123A日誌
四、首先須要建立一個文件夾而後才能上傳文件視頻