banner
NEWS LETTER

Helm部署OpenEBS存储

Scroll down

本文作者:丁辉

Helm部署OpenEBS存储

介绍

OpenEBS是一种开源云原生存储解决方案,托管于CNCF基金会。OpenEBS 管理每个 Kubernetes 节点上可用的存储,并使用该存储为有状态工作负载提供本地分布式(也称为复制)持久卷。

安装 OpenEBS

官方主页

Github仓库

Helm安装文档

  1. 添加仓库

    1
    2
    helm repo add openebs https://openebs.github.io/charts
    helm repo update
  2. 编辑 values.yaml 文件

    1
    vi openebs-values.yaml

    内容如下

    1
    2
    localprovisioner:
    enableDeviceClass: false
  3. 安装

    Github-Charts参数文档

    1
    helm install openebs --namespace openebs openebs/openebs --create-namespace -f openebs-values.yaml
  4. 检查 storageclass

    1
    kubectl get sc

    存在 openebs-hostpath 则👌

  5. 运行容器使用 openebs-hostpath 测试

    openebs-hostpath官方文档

    1
    kubectl apply -f https://gitee.com/offends/Kubernetes/raw/main/File/Yaml/openebs-pod.yaml

    容器启动后查看结果

    1
    kubectl exec hello-local-hostpath-pod -- cat /mnt/store/greet.txt

    卸载测试容器

    1
    kubectl delete -f https://gitee.com/offends/Kubernetes/raw/main/File/Yaml/openebs-pod.yaml

设置 openebs-hostpath 为默认存储类

1
kubectl patch storageclass openebs-hostpath  -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}' 

取消 openebs-hostpath 为默认存储类

1
kubectl patch storageclass openebs-hostpath -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"false"}}}'

卸载 OpenEBS

1
helm uninstall openebs -n openebs

问题记录

MountVolume.NewMounter initialization failed for volume “pvc-某某” : path “/var/openebs/local/pvc-某某” does not exist

在将创建本地 PV 主机路径的节点上设置目录, 该目录将被称为 BasePath 默认位置是 /var/openebs/local

  • Rke1 集群配置

    修改 cluster.yml 文件, 后更新 rke 集群

    1
    2
    3
    4
    services:
    kubelet:
    extra_binds:
    - /var/openebs/local:/var/openebs/local

I'm so cute. Please give me money.

其他文章
cover
Helm部署Nightingale
  • 70/01/01
  • 00:00
  • Kubernetes-Helm
cover
Helm部署PrometheusAlert
  • 70/01/01
  • 00:00
  • Kubernetes-Helm
目录导航 置顶
  1. 1. Helm部署OpenEBS存储
    1. 1.1. 介绍
    2. 1.2. 安装 OpenEBS
    3. 1.3. 设置 openebs-hostpath 为默认存储类
    4. 1.4. 卸载 OpenEBS
  2. 2. 问题记录
请输入关键词进行搜索