5547b5fe78
Previously, the database container was configured for use with Kubernetes. This patch removed any k8s dependencies, adds a script to manage mysql server.cnf settings and splits data and app containers. Splitting the containers provides additional portability and operational efficiencies compared to host mounts. Change-Id: I80656450c02dda5f2959d187eec20d5877dc54a2
15 lines
289 B
YAML
15 lines
289 B
YAML
mariadbdata:
|
|
image: kollaglue/centos-rdo-mariadb-data
|
|
volumes:
|
|
- /var/lib/mysql:/var/lib/mysql
|
|
net: "host"
|
|
privileged: true
|
|
mariadbapp:
|
|
image: kollaglue/centos-rdo-mariadb-app
|
|
env_file:
|
|
- openstack.env
|
|
volumes_from:
|
|
- mariadbdata
|
|
net: "host"
|
|
privileged: true
|