OpenShift v3: Unlocking the Power of Persistent Storage

17 minute read

Overview

In this article we will discuss and implement persistent storage in OpenShift v3. If you are new to OpenShift v3 you should first read the OpenShift v3 Lab Configuration article to get going.

ose-arch-diagram

Docker images are immutable and it is not possible to simply store persistent data within containers. When applications write to the Docker union file system, that data is lost as soon as the container is stopped. Docker provides a solution for persisting data, that allows administrator to mount a mount point existing on the container host (OpenShift node) within the container itself. It is similar to concept of raw device maps in virtual machines except with file systems.OpenShift v3 interfaces with Kubernetes and Kubernetes interfaces with Docker. As such we will mostly be referring to Kubernetes in this article. Kubernetes has a concept of pods which is a grouping of Docker containers that are co-existed. All Docker containers within a pod share same resources, including storage.

Ephemeral Storage

OpenShift v3 supports using ephemeral storage for all database templates. As mentioned using ephemeral storage means application data is written to the Docker union file system. All data is lost, as soon as the Kubernetes pod and as such container is stopped. In addition, since using ephemeral storage uses the Docker union file system, writes will be slow. If performance is desired, it is recommend to use persistent storage. The use case for ephemeral storage is mainly around automated testing. You don't need performance or to save data in order to test application functionality.

Persistent Storage

OpenShift v3 supports using persistent storage through Kubernetes storage plugins. Red Hat has contributed plugins for NFS, ISCSI, Ceph RBD and GlusterFS to Kubernetes. OpenShift v3 supports NFS, ISCSI, Ceph RBD or GlusterFS for persistent storage. As mentioned, Kubernetes deploys Docker containers within a pod and as such, is responsible for storage configuration. Details about the implementation of persistent storage in Kubernetes can be found here. Kubernetes allows you to create a pool of persistent volumes. Each persistent volume is mapped to a external storage file system. When persistent storage is requested from a pod, Kubernetes will claim a persistent volume from the pool of available volumes. The Kubernetes scheduler decides where to deploy pod. External storage is mounted on that node and presented to all containers within pod. If persistent storage is no longer needed, it can be reclaimed and made available to other pods. OpenShift v3 makes this all seamless to the user and hides the underlying complexity, as we will see.

Below is a snippet from the Docker configuration of a container using persistent storage. If you didn't have OpenShift v3 and Kubernetes, you would have to deal with this for every single Docker container.

[code language="java"]
"Volumes": {
"/dev/termination-log": "/var/lib/openshift/openshift.local.volumes/pods/6e1d5a40-471b-11e5-9680-525400bca113/containers/mysql/960dd543dc5f790ff2be72858b79c9df20bfae00ec9bffa333cd6e34e7aa36f9",
"/var/lib/mysql/data": "/var/lib/openshift/openshift.local.volumes/pods/6e1d5a40-471b-11e5-9680-525400bca113/volumes/kubernetes.io~nfs/pv0016",
"/var/run/secrets/kubernetes.io/serviceaccount": "/var/lib/openshift/openshift.local.volumes/pods/6e1d5a40-471b-11e5-9680-525400bca113/volumes/kubernetes.io~secret/default-token-ck4x7"
},
"VolumesRW": {
"/dev/termination-log": true,
"/var/lib/mysql/data": true,
"/var/run/secrets/kubernetes.io/serviceaccount": false
},
"VolumesRelabel": {
"/dev/termination-log": "",
"/var/lib/mysql/data": "",
"/var/run/secrets/kubernetes.io/serviceaccount": "ro"
}

[/code]

Configure Persistent Storage

In order to configure persistent storage, the storage must be available to all OpenShift v3 nodes using NFS, ISCSI, Ceph RDB or GlusterFS. In this example, we will configure an NFS server on the OpenShift v3 master. For a lab environment this is fine but for production environments you will want to use external storage for obvious reasons.

Configure NFS Server on OpenShift v3 Master

The first step is to install NFS server and start the services.

#yum groupinstall -y file-server
#systemctl enable rpcbind
#systemctl enable nfs-server
#systemctl start rpcbind
#systemctl start nfs-server

Once the services are running, we need to allow access through iptables. OpenShift v3 uses iptables and not firewalld.

#iptables-save > pre-nfs-firewall-rules-server
#iptables -I INPUT -m state --state NEW -p tcp -m multiport --dport 111,892,2049,32803 -s 0.0.0.0/0 -j ACCEPT
#iptables -I INPUT -m state --state NEW -p udp -m multiport --dport 111,892,2049,32769 -s 0.0.0.0/0 -j ACCEPT
#service iptables save

Allow SELinux policy for sVirt to write to nfs shares. By default the SELinux sVirt policy prevents containers from writing to NFS shares.

#setsebool -P virt_use_nfs 1

Configure NFS Client on OpenShift v3 Nodes

On all nodes, we will want to install the nfs-utils so that nodes can mount NFS shares.

#yum install -y nfs-utils

Configure Persistent Volumes

In order to configure persistent volumes we need to create a JSON or YAML template file. In this example we will use JSON but Kubernetes supports both. We will also create a pool of 20 persistent volumes. From here all steps will be performed on the OpenShift v3 master.

Create a JSON file that will be used as template for adding persistent volumes. Note: you need to replace the IP address with the IP of your OpenShift v3 master.

vi /root/PV.json
{
 "apiVersion": "v1",
 "kind": "PersistentVolume",
 "metadata": {
 "name": "pv0001"
},
"spec": {
   "capacity": {
   "storage": "10Gi"
   },
   "accessModes": [ "ReadWriteOnce" ],
   "nfs": {
      "path": "/mnt/RBD/pv0001",
      "server": "192.168.122.60"
   },
   "persistentVolumeReclaimPolicy": "Recycle"
   }
}

In order to automate things we will create a for loop, that will create the NFS shares, set permissions and create persistent volumes in OpenShift v3.

for i in `seq -w 0001 0020`; do SHARE=/mnt/RBD/pv$i; mkdir -p $SHARE; chmod 777 $SHARE; chown nfsnobody:nfsnobody $SHARE; echo "$SHARE 192.168.122.0/24(rw,all_squash)" >>/etc/exports; sed s/pv0001/pv$i/g /root/PV.json | oc create -f -; done

We can now list the persistent storage volumes in OpenShift v3. Notice we have no claims yet.

#oc get pv
NAME   LABELS CAPACITY    ACCESSMODES STATUS    CLAIM         REASON
pv0001 <none> 10737418240 RWO         Available 
pv0002 <none> 10737418240 RWO         Available 
pv0003 <none> 10737418240 RWO         Available 
pv0004 <none> 10737418240 RWO         Available 
pv0005 <none> 10737418240 RWO         Available 
pv0006 <none> 10737418240 RWO         Available 
pv0007 <none> 10737418240 RWO         Available 
pv0008 <none> 10737418240 RWO         Available 
pv0009 <none> 10737418240 RWO         Available 
pv0010 <none> 10737418240 RWO         Available 
pv0011 <none> 10737418240 RWO         Available 
pv0012 <none> 10737418240 RWO         Available 
pv0013 <none> 10737418240 RWO         Available 
pv0014 <none> 10737418240 RWO         Available 
pv0015 <none> 10737418240 RWO         Available 
pv0016 <none> 10737418240 RWO         Available
pv0017 <none> 10737418240 RWO         Available 
pv0018 <none> 10737418240 RWO         Available 
pv0019 <none> 10737418240 RWO         Available 
pv0020 <none> 10737418240 RWO         Available

Create OpenShift v3 Application Using Persistent Storage

Now that everything is configured, we can do a quick demo of how persistent storage in OpenShift v3 actually works. We will deploy a ruby hello world application from GitHub that uses a persistent MySQL database.

First create a new project in OpenShift v3. This creates a namespace in Kubernetes.

#oc new-project demo

Next deploy our ruby hello world application from GitHub. This will deploy a pod that builds the code from GitHub and then using STI (Source To Image), will deploy a running pod with our built application. The reason for this is that we have different dependencies required for building and running applications. You are hopefully starting to see the power of OpenShift v3. If not stay tuned!

#oc new-app https://github.com/openshift/ruby-hello-world

Since we will want to access our application our service also needs to be exposed. OpenShift v3 will configure an HA proxy using router in openVswitch and an Apache vHost. Traffic is routed to the appropriate host based on the service name. The Apache vHost exposes the application based on the service name. Using vHosts allows OpenShift services to use the same ports and thus doesn't require unique ports. Behind the scenes Kubernetes is handling the routing from the OpenShift v3 node to the Docker container.

#oc expose service ruby-hello-world

We can check OpenShift v3 UI or console to see the status of our build and deployment.

RUBY_HELLO_WORLD_BUILD

Once complete we should have a builder pod that has exited with 0 and a running pod.

#oc get pods
NAME                     READY     REASON     RESTARTS AGE
ruby-hello-world-1-build 0/1       ExitCode:0 0        3m
ruby-hello-world-3-3gtig 1/1       Running    0        1m

If we open a web browser and point it at the service name we should see the application. In this case it won't show us much since we don't yet have a database.

RUBY_OPENSHIFT_WO_DB

Lets add a persistent MySQL database and connect it to our ruby hello world application.

#oc process -n openshift mysql-persistent -v DATABASE_SERVICE_NAME=database | oc create -f -
#oc env dc database --list | oc env dc ruby-hello-world -e -

A MySQL database will be deployed using persistent storage. Once the database is deployed the pod should be running and the we should also see a persistent storage volume claim.

#oc get pods
NAME                     READY     REASON     RESTARTS AGE
database-1-2gv6j         1/1       Running    0        1m
ruby-hello-world-1-build 0/1       ExitCode:0 0        3m
ruby-hello-world-3-3gtig 1/1       Running    0        1m
#oc get pv
NAME   LABELS CAPACITY    ACCESSMODES STATUS    CLAIM           REASON
pv0001 <none> 10737418240 RWO         Available 
pv0002 <none> 10737418240 RWO         Available 
pv0003 <none> 10737418240 RWO         Available 
pv0004 <none> 10737418240 RWO         Available 
pv0005 <none> 10737418240 RWO         Available 
pv0006 <none> 10737418240 RWO         Available 
pv0007 <none> 10737418240 RWO         Available 
pv0008 <none> 10737418240 RWO         Available 
pv0009 <none> 10737418240 RWO         Available 
pv0010 <none> 10737418240 RWO         Available 
pv0011 <none> 10737418240 RWO         Available 
pv0012 <none> 10737418240 RWO         Available 
pv0013 <none> 10737418240 RWO         Available 
pv0014 <none> 10737418240 RWO         Available 
pv0015 <none> 10737418240 RWO         Available 
pv0016 <none> 10737418240 RWO         Bound      demo/database
pv0017 <none> 10737418240 RWO         Available 
pv0018 <none> 10737418240 RWO         Available 
pv0019 <none> 10737418240 RWO         Available 
pv0020 <none> 10737418240 RWO         Available

Once we have verified everything we should also be able to use our ruby hello world application. Lets do a put for a key/value pair.

RUBY_WITH_DB_PUT

In order to demonstrate persistent storage, let us now delete the MySQL database pod. Don't worry the replication controller will automatically deploy a new pod and of course our data will be saved. If we were using ephemeral storage the data would be lost at this step.

#oc delete pod database-1-2gv6j

Finally lets go back to our ruby hello world application and and do a get for our key "keith". We should see the value is "tenzer" thus confirming persistent storage is working.

RUBY_DB_GET

Summary

In this article we have seen the power of OpenShift v3 in delivering a complete platform for building, deploying and running container-based applications. We have discussed the use cases behind ephemeral and persistent storage within OpenShift v3 ecosystem. Finally we have implemented and shown a compelling use case for persistent storage. OpenShift v3 is a platform for building and running next-gen applications using immutable container infrastructure. The goal is to deliver innovation faster. Hopefully this article has given you a glimpse at what is available today and inspired you to try things yourself. If you have any feedback or use cases for OpenShift v3, lets hear it!

A special thanks goes to Wolfram Richter, a mentor and colleague who helped tremendously in creating the content for this article.

Happy OpenShifting!

(c) 2015 Keith Tenzer