k8s集群中使用GlusterFS存储

本文介绍如何在Kubernetes集群上快速部署GlusterFS分布式文件系统,包括节点标记、DaemonSet安装、RBAC权限设置、StorageClass创建及PVC配置,实现存储资源的高效管理和利用。

glusterfs在k8s集群中快速搭建的方法:

https://github.com/kubernetes-retired/external-storage/tree/master/gluster/glusterfs

 

前提:需要k8s集群,至少需要2个node节点

本示例使用的k8s版本为1.18

 

安装使用

1. 给每个node节点添加标记

$ kubectl label nodes <storage-node-name> storagenode=glusterfs

 

2.安装GlusterFS DaemonSet

yaml地址:https://github.com/kubernetes-retired/external-storage/blob/master/gluster/glusterfs/deploy/glusterfs-daemonset.yaml

 

1.18版本需要将apiVersion改为apps/v1

spec加上selector便签

参考示例:glusterfs-daemonset.yaml

kind: DaemonSet
apiVersion: apps/v1
metadata:
  name: glusterfs
  labels:
    glusterfs: daemonset
  annotations:
    description: GlusterFS DaemonSet
    tags: glusterfs
spec:
selector:
   matchLabels:
    glusterfs: pod
  template:
    metadata:
      name: glusterfs
      labels:
        glusterfs-node: pod
    spec:
      nodeSelector:
        storagenode: glusterfs
      hostNetwork: t
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值