在k8s中以deployment方式部署minio

本文介绍了如何使用Deployment替代Pod部署MinIO,以解决因Kubernetes集群故障导致MinIO丢失的问题。文中详细描述了部署清单,包括镜像、环境变量、服务和IngressRoute配置,以及解决内网域名解析问题的方法。

minio官网给的demo是通过pod方式部署的,我碰到了好几次因为k8s集群断电重启后,以单pod方式部署部署的minio消失。因此这里改用deplyment的方式部署minio。

以下是完整的minio部署清单

---
# Deploys a new MinIO Pod into the metadata.namespace Kubernetes namespace
#
# The `spec.containers[0].args` contains the command run on the pod
# The `/data` directory corresponds to the `spec.containers[0].volumeMounts[0].mountPath`
# That mount path corresponds to a Kubernetes HostPath which binds `/data` to a local drive or volume on the worker node where the pod runs
#
apiVersion: apps/v1
kind: Deployment
metadata:
  name: minio
  namespace: devops
spec:
  replicas: 1
  selector:
    matchLabels:
      app: minio
  template:
    metadata:
      labels:
        app: minio
    spec:
      containers:
      - name: minio
        image: 192.168.10.30:9000/minio:latest
        command:
        - /bin/bash
        - -c
        args:
        - minio server /data --console-address :9001
        env:
          - name: MINIO_SERVER_URL
            value: 'http://minio.rockstics.com'
          - name: MINIO_BROWSER_REDIRECT_URL
            value: 'http://minio.rockstics.com/minio/ui'
        volumeMounts:
        - mountPath: /data
          name: localvolume # Corresponds to the `spec.volumes` Persistent Volume
      hostAliases:
        - ip: "192.168.10.188"
          hostnames:
          - "minio.rockstics.com"
      volumes:
      - name: localvolume
        hostPath: # MinIO generally recommends using locally-attached volumes
          path: /data/minio # Specify a path to a local drive or volume on the Kubernetes worker node
          type: DirectoryOrCreate # The path to the last directory must exist
      nodeSelector:
        kubernetes.io/hostname: kubernetesw02

---
kind: Service
apiVersion: v1
metadata:
  name: minio-server
  namespace: devops
  labels:
    app: minio-server
spec:
  ports:
    - name: http-console
      protocol: TCP
      port: 9001
      targetPort: 9001
    - name: http-api
      protocol: TCP
      port: 9000
      targetPort: 9000
  selector:
    app: minio
---
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
  annotations:
  labels:
    app: minio
  name: minio
  namespace: devops
spec:
  routes:
    - kind: Rule
      match: Host(`minio.isiact.com`)
      services:
        - kind: Service
          name: minio-server
          namespace: devops
          port: http-api
    - kind: Rule
      match: Host(`minio.isiact.com`) && PathPrefix(`/minio/ui`)
      middlewares:
        - name: minio-console
      services:
        - kind: Service
          name: minio-server
          namespace: devops
          port: http-console
---
apiVersion: traefik.containo.us/v1alpha1
kind: Middleware
metadata:
  annotations:
  name: minio-console
  namespace: devops
spec:
  stripPrefix:
    prefixes:
      - /minio/ui

题外话:由于我通过MINIO_SERVER_URL指定了minio的内网访问域名,导致登录minio报"invalid login"的问题,刚开始以为是挂载的数据路径中有.minio.sys 相关信息(包括minio配置信息包括用户密码,assce_key等信息)被其他容器挂载无效,实践证明不是这样的,后来才发现是因为容易内无法解析我的内网域名导致的,解决方案就是直接进行host绑定。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值