使用 GlusterFS 动态配置 OpenShift 后端存储
2019-03-23 本文已影响0人
四冶读史
[toc]
概述
如果是用 GlusterFS 作为后端存储,官方建议通过 Heketi 来提供动态配置。
注:GlusterFS 和 Heketi 部署并配置好。
Heketi 地址:http://10.11.4.21.8080
创建 StorageClass
编辑 gluster-storage-class.yaml,内容如下:
kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: glusterfs
provisioner: kubernetes.io/glusterfs
parameters:
resturl: "http://10.11.4.21:8080"
volumetype: replicate:2
restauthenabled: "false"
创建。
$ oc create -f gluster-storage-class.yaml
参考地址:
Heketi官网:https://github.com/heketi/heketi/blob/master/README.md
https://docs.okd.io/latest/install_config/persistent_storage/dynamically_provisioning_pvs.html#glusterfs
example:https://docs.okd.io/latest/install_config/storage_examples/gluster_dynamic_example.html#install-config-storage-examples-gluster-dynamic-example