Migrate mariadb to multicontainer pod

Change-Id: I23c3df99fa3f870aca5e4fce7f64ed0da8497b7c
This commit is contained in:
Sergey Reshetnyak 2016-06-24 13:01:39 +03:00
parent fcf800363d
commit 030f90f023
1 changed files with 18 additions and 16 deletions

View File

@ -1,18 +1,20 @@
service:
name: mariadb
ports:
- mariadb_port
container:
node-selector:
openstack-controller: "true"
probes:
name: mariadb
node-selector:
openstack-controller: "true"
ports:
- mariadb_port
containers:
- name: mariadb
image: mariadb
probes:
readiness: mariadb-readiness.sh
liveness: "true"
pre:
pre:
- name: mariadb-bootstrap
command: bootstrap.sh {{ db_root_password }} {{ db_max_timeout }}
user: mysql
daemon:
daemon:
command: mysqld
files:
- mariadb-my-cnf
@ -20,10 +22,10 @@ service:
user: mysql
files:
mariadb-my-cnf:
path: /etc/mysql/my.cnf
content: my.cnf.j2
mariadb-readiness:
path: /usr/local/bin/mariadb-readiness.sh
content: readiness.sh.j2
perm: "755"
mariadb-my-cnf:
path: /etc/mysql/my.cnf
content: my.cnf.j2
mariadb-readiness:
path: /usr/local/bin/mariadb-readiness.sh
content: readiness.sh.j2
perm: "755"