The code in this repository was created as a proof of concept back when StatefulSets where still called PetSets and hasn't seen much love since.
Feel free to use the bootstrap logic and image structure in your project, but we're not going to implement any changes going forward.
If you find the code in this repository helpful, but want to use it under a different license please get in contact with us.
The image recognizes the following environment variables that you can set during
initialization by passing -e VAR=VALUE
to the Docker run command.
Variable name | Description |
---|---|
MYSQL_USER |
User name for MySQL account to be created |
MYSQL_PASSWORD |
Password for the user account |
MYSQL_DATABASE |
Database name |
MYSQL_ROOT_PASSWORD |
Password for the root user (optional) |
You can also set the following mount points by passing the -v /host:/container
flag to Docker.
Volume mount point | Description |
---|---|
/var/lib/mysql |
MySQL data directory |
Notice: When mouting a directory from the host into the container, ensure that the mounted directory has the appropriate permissions and that the owner and group of the directory matches the user UID or name which is running inside the container.
Import the templates into OpenShift with the following commands:
$ oc create -f mariadb-galera-ephemeral-template.yml -n openshift
$ oc create -f mariadb-galera-persistent-template.yml -n openshift
add to Project
If choosing the persistent template, make sure that the PV's are created in the
namespace of your project and match the VOLUME_PV_NAME
and VOLUME_CAPACITY
parameters of the template.
$ oc create -f galera-pv-nfs.yml -n yourproject
$ oc create -f galera.yml
$ oc delete petset mysql
$ oc delete svc galera
$ oc delete pod mysql-0 mysql-1 mysql-2
$ oc delete pv datadir-mysql-0 datadir-mysql-1 datadir-mysql-2
This image runs on kubernetes as well.
$ kubectl create -f galera-pv-host.yml
$ kubectl create -f galera.yml
For Kubernetes v1.5 the API endpoints have changed you need to use the definition in galera_k8s_v1.6.yml
.
$ kubectl create -f galera-pv-host.yml
$ kubectl create -f galera_k8s_v1.6.yml
$ kubectl delete petset mysql
$ kubectl delete svc galera
$ kubectl delete pod mysql-0 mysql-1 mysql-2
$ kubectl delete pv datadir-mysql-0 datadir-mysql-1 datadir-mysql-2
$ git clone https://github.com/adfinis-sygroup/openshift-mariadb-galera
$ cd k8s-mariadb-galera-centos
$ make
Technical informations how the image works in detail can be found here
Contributions are more than welcome! Please feel free to open new issues or pull requests.
GNU GENERAL PUBLIC LICENSE Version 3
See the LICENSE file.