helm安装MINIO文件服务器

MinIO Quickstart Guide

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日志

四、首先须要建立一个文件夹而后才能上传文件视频

相关文章
相关标签/搜索