Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/auto-clustering/auto-cluster.jps
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description:
healthcheck and autodiscovery of newly added DB nodes
short: Scalable MySQL cluster with ProxySQL for even load distribution

baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-cluster
baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/v3.0.0

logo: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/master/images/mysql-logo.png

Expand Down
4 changes: 2 additions & 2 deletions addons/auto-clustering/scripts/auto-cluster-logic.jps
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ onInstall:
SCHEME: ${settings.scheme}

- install:
jps: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-addon/addons/recovery/manifest.yml?_r=${fn.random}
jps: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/master/addons/recovery/manifest.yml?_r=${fn.random}
nodeGroup: sqldb
targetNodes: sqldb
settings:
install: true

- install:
jps: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-addon/addons/check-corrupts/manifest.yml?_r=${fn.random}
jps: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/master/addons/check-corrupts/manifest.yml?_r=${fn.random}
nodeGroup: sqldb
targetNodes: sqldb
settings:
Expand Down
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ logo: /images/mysql-mariadb-percona-logo.png?_r=1

onBeforeInit: /scripts/settings.js?_r=${fn.random}

baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-cluster
baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/v3.0.0

settings:
fields:
Expand Down
2 changes: 1 addition & 1 deletion scripts/common.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
globals:
db_cluster_path: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-cluster
db_cluster_path: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/v3.0.0
customConfigFile: /etc/mysql/conf.d/my_custom.cnf

actions:
Expand Down
2 changes: 1 addition & 1 deletion scripts/galera.jps
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: mysql-galera-cluster
name: MariaDB Galera Cluster
description: MariaDB Galera Auto Clustering

baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-cluster
baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/v3.0.0

success:
text: /texts/phpmyadmin-credentials.md
Expand Down
6 changes: 3 additions & 3 deletions scripts/master-master.jps
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: mysql-master-master-replication-cluster
name: MySQL/MariaDB/Percona Primary-Primary Replication Database Cluster
description: 'DB Auto Clustering: 1 x Primary + N x Secondary'

baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-cluster
baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/v3.0.0

success:
text: /texts/phpmyadmin-credentials.md
Expand Down Expand Up @@ -108,7 +108,7 @@ actions:

setupPrimaryPrimaryReplication:
- cmd[${globals.primary2_id}]: |-
curl --silent https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-addon/addons/recovery/scripts/db-recovery.sh > /tmp/db-recovery.sh;
curl --silent https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/master/addons/recovery/scripts/db-recovery.sh > /tmp/db-recovery.sh;
bash /tmp/db-recovery.sh --scenario restore_primary_from_primary --donor-ip ${globals.primary1_ip};
user: root

Expand Down Expand Up @@ -143,6 +143,6 @@ actions:

setupSecondaryReplication:
- cmd[${this}]: |-
curl --silent https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-addon/addons/recovery/scripts/db-recovery.sh > /tmp/db-recovery.sh;
curl --silent https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/master/addons/recovery/scripts/db-recovery.sh > /tmp/db-recovery.sh;
bash /tmp/db-recovery.sh --scenario restore_secondary_from_primary --donor-ip ${globals.primary1_ip} --additional-primary ${globals.primary2_ip};
user: root
4 changes: 2 additions & 2 deletions scripts/master-slave.jps
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: mysql-master-slave-replication-cluster
name: MySQL/MariaDB/Percona Primary-Secondary Replication Database Cluster
description: 'DB Auto Clustering: 1 x Primary + N x Secondary'

baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-cluster
baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/v3.0.0

success:
text: /texts/phpmyadmin-credentials.md
Expand Down Expand Up @@ -107,6 +107,6 @@ actions:
- setGlobals:
PRIMARY_IP: ${nodes.sqldb.master.address}
- cmd[${this}]: |-
curl --silent https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-addon/addons/recovery/scripts/db-recovery.sh > /tmp/db-recovery.sh;
curl --silent https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/master/addons/recovery/scripts/db-recovery.sh > /tmp/db-recovery.sh;
bash /tmp/db-recovery.sh --scenario restore_secondary_from_primary --donor-ip ${globals.PRIMARY_IP};
user: root
2 changes: 1 addition & 1 deletion scripts/proxy-common.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
globals:
db_cluster_path: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-cluster
db_cluster_path: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/v3.0.0
proxy_web_port: 4848

actions:
Expand Down
2 changes: 1 addition & 1 deletion scripts/proxy-master-slave.jps
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: mysql-proxy-master-slave-cluster
name: MySQL/MariaDB/Percona Database Cluster with ProxySQL
description: ProxySQL Load Balancer Entry Point

baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-cluster
baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/v3.0.0

success: /texts/proxy-entrypoint.md

Expand Down
2 changes: 1 addition & 1 deletion scripts/xtradb.jps
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: percona-xtradb-cluster
name: Percona XtraDB Cluster
description: Percona XtraDB Auto Clustering

baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/stage-cluster
baseUrl: https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/v3.0.0

success:
text: /texts/phpmyadmin-credentials.md
Expand Down