MXS-1300: Add docker based cluster for REST API testing

The REST API test suite now starts a four node MariaDB cluster with
docker-compose. This allows quick and easy local testing.
This commit is contained in:
Markus Mäkelä
2017-07-11 11:47:36 +03:00
parent d59d3ab638
commit 6479788283
4 changed files with 80 additions and 1 deletions

View File

@ -0,0 +1,13 @@
CREATE DATABASE test;
CREATE USER 'maxuser'@'127.0.0.1' IDENTIFIED BY 'maxpwd';
CREATE USER 'maxuser'@'%' IDENTIFIED BY 'maxpwd';
GRANT ALL ON *.* TO 'maxuser'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL ON *.* TO 'maxuser'@'%' WITH GRANT OPTION;
CREATE USER 'skysql'@'127.0.0.1' IDENTIFIED BY 'skysql';
CREATE USER 'skysql'@'%' IDENTIFIED BY 'skysql';
GRANT ALL ON *.* TO 'skysql'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL ON *.* TO 'skysql'@'%' WITH GRANT OPTION;
SET GLOBAL max_connections=10000;