glusterfs/

directory
v1.8.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 7, 2018 License: Apache-2.0

README

GlusterFS Simple Provisioner for Kubernetes 1.5+

GlusterFS simple provisioner is an external provisioner which dynamically provision glusterfs volumes on demand.

Unlike Heketi, this provisioner will not manage GlusterFS cluster. So that you must manage GlusterFS cluster by yourself. This will simply create Gluster volume in the specified GlusterFS cluster like nfs-client provisioner.

It means, for example, if you want to add brick to your Gluster volume, you can use familiar gluster vol add-brick command.

Build GlusterFS Simple Provisioner and container image

[root@localhost]# make container

Start Kubernetes local cluster

Start GlusterFS cluster on Kubernetes

GlusterFS Simple Provisioner requires Gluster cluster which is running on the top of Kubernetes cluster.

[root@localhost]# kubectl create -f deploy/glusterfs-daemonset.yaml
[root@localhost]# kubectl label node <...node...> storagenode=glusterfs
Configure the GlusterFS trusted pool

GlusterFS Simple Provisioner will not manage GlusterFS cluster at all, so it is needed to manage GlusterFS cluster by yourself.

Check GlusterFS node's podIPs.

[root@localhost]# kubectl get pods -o wide --selector=glusterfs-node=pod
NAME              READY     STATUS    RESTARTS   AGE       IP             NODE
glusterfs-grck0   1/1       Running   0          11m       172.16.2.132   worker02
glusterfs-mgmnd   1/1       Running   0          11m       172.16.2.131   worker01

And add nodes to trusted pool

[root@localhost]# kubectl exec -ti glusterfs-grck0 gluster peer probe 172.16.2.131
[root@localhost]# kubectl exec -ti glusterfs-mgmnd gluster peer probe 172.16.2.132

Start glusterfs simple provisioner

The following example assumes kubeconfig is at /root/.kube.

docker run -ti \
           -v /root/.kube:/kube \
           -v /var/run/kubernetes:/var/run/kubernetes \
           external_storage/glusterfs-simple-provisioner \
              -kubeconfig=/kube/config

Create a glusterfs-simple Storage Class

echo 'kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
  name: glusterfs-simple
provisioner: gluster.org/glusterfs-simple
parameters:
  forceCreate: "true"
  brickrootPaths: "172.16.2.131:/tmp/,172.16.2.132:/tmp"' | kubectl create -f -

The available storage class parameter are listed below:


parameters:
    brickRootPaths: "172.16.2.131:/tmp/,172.16.2.132:/tmp"
    volumeType: "replica 2"
    namespace: "default"
    selector: "glusterfs-node==pod"
    forceCreate: "true"
  • brickRootPaths: Bricks will be created under this directories.
  • volumeType: Storage class will create this type of volume.
  • namespace: Namespace which GlusterFS pods are consisted.
  • selector: Label selector which will specify GlusterFS pods.
  • forceCreate: If true, glusterd create volume forcefully.

Directories

Path Synopsis
cmd
pkg

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL