Deploying PostgreSQL Clusters using StatefulSets
Editor’s note: Today’s guest post is by Jeff McCormick, a developer at Crunchy Data, showing how to build a PostgreSQL cluster using the new Kubernetes StatefulSet feature.
In an earlier
StatefulSets Example Step 1 - Create Kubernetes Environment StatefulSets is a new feature implemented in
The example in this blog deploys on Centos7 using kubeadm. Some instructions on what kubeadm provides and how to deploy a Kubernetes cluster is located
Step 2 - Install NFS The example in this blog uses NFS for the Persistent Volumes, but any shared file system would also work (ex: ceph, gluster). The example script assumes your NFS server is running locally and your hostname resolves to a known IP address. In summary, the steps used to get NFS working on a Centos 7 host are as follows: The /etc/exports file should contain a line similar to this one except with the applicable IP address specified: After these steps NFS should be running in the test environment. Step 3 - Clone the Crunchy PostgreSQL Container Suite The example used in this blog is found at in the Crunchy Containers GitHub repo
Next, pull down the Crunchy PostgreSQL container image: Step 4 - Run the Example To begin, it is necessary to set a few of the environment variables used in the example: BUILDBASE is where you cloned the repository and CCP_IMAGE_TAG is the container image version we want to use. Next, run the example: That script will create several Kubernetes objects including: At this point, two pods will be running in the Kubernetes environment: Immediately after the pods are created, the deployment will be as depicted below: Step 5 - What Just Happened? This example will deploy a StatefulSet, which in turn creates two pods. The containers in those two pods run the PostgreSQL database. For a PostgreSQL cluster, we need one of the containers to assume the master role and the other containers to assume the replica role. So, how do the containers determine who will be the master, and who will be the replica? This is where the new StateSet mechanics come into play. The StateSet mechanics assign a unique ordinal value to each pod in the set. The StatefulSets provided unique ordinal value always start with 0. During the initialization of the container, each container examines its assigned ordinal value. An ordinal value of 0 causes the container to assume the master role within the PostgreSQL cluster. For all other ordinal values, the container assumes a replica role. This is a very simple form of discovery made possible by the StatefulSet mechanics. PostgreSQL replicas are configured to connect to the master database via a Service dedicated to the master database. In order to support this replication, the example creates a separate Service for each of the master role and the replica role. Once the replica has connected, the replica will begin replicating state from the master. During the container initialization, a master container will use a Service Account (pgset-sa) to change it’s container label value to match the master Service selector. Changing the label is important to enable traffic destined to the master database to reach the correct container within the Stateful Set. All other pods in the set assume the replica Service label by default. Step 6 - Deployment Diagram The example results in a deployment depicted below: In this deployment, there is a Service for the master and a separate Service for the replica. The replica is connected to the master and replication of state has started. The Crunchy PostgreSQL container supports other forms of cluster deployment, the style of deployment is dictated by setting the PG_MODE environment variable for the container. In the case of a StatefulSet deployment, that value is set to: PG_MODE=set This environment variable is a hint to the container initialization logic as to the style of deployment we intend. Step 7 - Testing the Example The tests below assume that the psql client has been installed on the test system. If not, the psql client has been previously installed, it can be installed as follows: In addition, the tests below assume that the tested environment DNS resolves to the Kube DNS and that the tested environment DNS search path is specified to match the applicable Kube namespace and domain. The master service is named pgset-master and the replica service is named pgset-replica. Test the master as follows (the password is password): If things are working, the command above will return output indicating that a single replica is connecting to the master. Next, test the replica as follows: The command above should fail as the replica is read-only within a PostgreSQL cluster. Next, scale up the set as follows: The command above should successfully create a new replica pod called pgset-2 as depicted below: Step 8 - Persistence Explained Take a look at the persisted PostgreSQL data files on the resulting NFS mount path: Each container in the stateful set binds to the single NFS Persistent Volume Claim (pgset-pvc) created in the example script. Since NFS and the PVC can be shared, each pod can write to this NFS path. The container is designed to create a subdirectory on that path using the pod host name for uniqueness. Conclusion StatefulSets is an exciting feature added to Kubernetes for container builders that are implementing clustering. The ordinal values assigned to the set provide a very simple mechanism to make clustering decisions when deploying a PostgreSQL cluster.sudo setsebool -P virt\_use\_nfs 1
sudo yum -y install nfs-utils libnfsidmap
sudo systemctl enable rpcbind nfs-server
sudo systemctl start rpcbind nfs-server rpc-statd nfs-idmapd
sudo mkdir /nfsfileshare
sudo chmod 777 /nfsfileshare/
sudo vi /etc/exports
sudo exportfs -r
/nfsfileshare 192.168.122.9(rw,sync)
cd $HOME
git clone https://github.com/CrunchyData/crunchy-containers.git
cd crunchy-containers/examples/kube/statefulset
docker pull crunchydata/crunchy-postgres:centos7-9.5-1.2.6
export BUILDBASE=$HOME/crunchy-containers
export CCP\_IMAGE\_TAG=centos7-9.5-1.2.6
./run.sh
$ kubectl get pod
NAME READY STATUS RESTARTS AGE
pgset-0 1/1 Running 0 2m
pgset-1 1/1 Running 1 2m
sudo yum -y install postgresql
psql -h pgset-master -U postgres postgres -c 'table pg\_stat\_replication'
psql -h pgset-replica -U postgres postgres -c 'create table foo (id int)'
kubectl scale statefulset pgset --replicas=3
$ ls -l /nfsfileshare/
total 12
drwx------ 20 26 26 4096 Jan 17 16:35 pgset-0
drwx------ 20 26 26 4096 Jan 17 16:35 pgset-1
drwx------ 20 26 26 4096 Jan 17 16:48 pgset-2