From b828e3d7ab5cd69ddd70bd279e4d6a4051726be8 Mon Sep 17 00:00:00 2001 From: Harry Zhang Date: Mon, 21 Aug 2017 20:19:57 +0800 Subject: [PATCH] Add cinder-flexvolume developer doc Implements: blueprint volume-improve Change-Id: I907bdbd238b16aad81e8150dacac049436750864 --- doc/source/developer.rst | 1 + doc/source/index.rst | 2 + doc/source/volume.rst | 86 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 89 insertions(+) create mode 100644 doc/source/volume.rst diff --git a/doc/source/developer.rst b/doc/source/developer.rst index 01ca119..72cc9e7 100644 --- a/doc/source/developer.rst +++ b/doc/source/developer.rst @@ -99,6 +99,7 @@ First create configure file for Stackube. user-gateway: "10.244.0.1" kubernetes-host: "192.168.0.33" kubernetes-port: "6443" + keyring: "AQBZU5lZ/Z7lEBAAJuC17RYjjqIUANs2QVn7pw==" EOF Then deploy stackube components: diff --git a/doc/source/index.rst b/doc/source/index.rst index ef6f195..049fe1f 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -24,3 +24,5 @@ Developer Guide developer + volume + diff --git a/doc/source/volume.rst b/doc/source/volume.rst new file mode 100644 index 0000000..d7c3845 --- /dev/null +++ b/doc/source/volume.rst @@ -0,0 +1,86 @@ +Persistent volume in Stackube +===================================== + +This page describes the persistent volume design and usage in Stackube. + +================= +Use standard Kubernetes volume +================= + +Stackube is a standard upstream Kubernetes cluster, so any type of `Kubernetes volumes +`_. can be used here, for example: +:: + + apiVersion: v1 + kind: PersistentVolume + metadata: + name: nfs + spec: + capacity: + storage: 1Mi + accessModes: + - ReadWriteMany + nfs: + # FIXME: use the right IP + server: 10.244.1.4 + path: "/exports" + +Please note since Stackube is a baremetal k8s cluster, cloud provider based volume like GCE, AWS etc is not supported by default. + +But unless you are using emptyDir or hostPath, we highly recommend the "Cinder RBD based block device as volume" described below in Stackube, because this volume type will bring you much higher performance. + +================================== +Use Cinder RBD based block device as volume +================================== + +The reason this volume type is recommended is: by default Stackube will run most of your workloads in a VM-based Pod, in this case directory sharing is used by hypervisor based runtime for volumes mounts, but this actually has more I/O overhead than bind mount. + +On the other hand, the hypervisor Pod make it possible to mount block device directly to the VM-based Pod, so we can eliminates directory sharing. + +In Stackube, we use a flexvolume to directly use Cinder RBD based block device as Pod volume. The usage is very simple: + +:: + + apiVersion: v1 + kind: Pod + metadata: + name: web + labels: + app: nginx + spec: + containers: + - name: nginx + image: nginx + ports: + - containerPort: 80 + volumeMounts: + - name: nginx-persistent-storage + mountPath: /var/lib/nginx + volumes: + - name: nginx-persistent-storage + flexVolume: + driver: "cinder/flexvolume_driver" + fsType: ext4 + options: + volumeID: daa7b4e6-1792-462d-ad47-78e900fed429 + +Please note the name of flexvolume is: "cinder/flexvolume_driver". Users are expected to provide a valid volume ID created with Cinder beforehand. Then a related RBD device will be attached to the VM-based Pod. + +If your cluster is installed by stackube/devstack or following other stackube official guide, a /etc/kubernetes/cinder.conf file will be generated automatically on every node. + +Otherwise, users are expected to write a /etc/kubernetes/cinder.conf on every node. The contents is like: + +:: + + [Global] + auth-url = _AUTH_URL_ + username = _USERNAME_ + password = _PASSWORD_ + tenant-name = _TENANT_NAME_ + region = _REGION_ + [RBD] + keyring = _KEYRING_ + + +and also, users need to make sure flexvolume_driver binary is in /usr/libexec/kubernetes/kubelet-plugins/volume/exec/cinder~flexvolume_driver/ of every node. +