helm安装MINIO文件服务器

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: {}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zywjpj.html