0ccd804849
based on Change-Id: Ie759857fb94db9aa94aaeaeda2c6ab5bb159cc9e All the work done for fuel-library packaging Should be overriden by the change above after we switch CI to package-based implements blueprint: package-fuel-components Change-Id: I48ed37a009b42f0a9a21cc869a869edb505b39c3 |
||
---|---|---|
.. | ||
files/ocf | ||
lib/facter | ||
manifests | ||
spec | ||
templates | ||
.gitignore | ||
.project | ||
Gemfile | ||
Modulefile | ||
Rakefile | ||
README |
This is a good start to play around with the galera multi-master mysql synchronous replication (http://www.codership.com/products/mysql_galera) HOWTO: * play around (add a database and data, chaos-monkey nodes etc.) WARNING Change the mysql root password in production and limit access to galera cluster members! TODO * naming: master -> donor * put a load balancer in front of the cluster * make cluster "masterless" nodes.pp # nodes $cluster_name = 'wsrep_galera_cluster' node /mysql-db-01/ { class { 'galera' : cluster_name => $cluster_name } } node /mysql-db-0([2-9])/ { $master_ip = '172.18.67.254' class { 'galera' : cluster_name => $cluster_name, master_ip => $master_ip } }