├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── goland_logo.png └── workflows │ └── all_tests.yml ├── .gitignore ├── .goreleaser.yaml ├── BUGS ├── CHANGELOG.md ├── CNAME ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── _config.yml ├── abbreviations ├── abbreviations.go ├── abbreviations_test.go └── sample_abbreviations.txt ├── cmd ├── admin.go ├── admin_default_sandbox.go ├── cookbook.go ├── data_load.go ├── defaults.go ├── delete.go ├── delete_binaries.go ├── deploy.go ├── downloads.go ├── export.go ├── export_test.go ├── global.go ├── import.go ├── info.go ├── init.go ├── multiple.go ├── remote.go ├── replication.go ├── root.go ├── sandboxes.go ├── single.go ├── templates.go ├── tree.go ├── unpack.go ├── update.go ├── usage.go ├── use.go └── versions.go ├── common ├── COMPATIBLE_VERSION ├── VERSION ├── capabilities.go ├── capabilities_test.go ├── checks.go ├── checks_test.go ├── fileutil.go ├── fileutil_test.go ├── regexp_util.go ├── regexp_util_test.go ├── stack.go ├── stack_test.go ├── strutils.go ├── strutils_test.go ├── tprintf.go ├── tprintf_test.go ├── version.go └── version_test.go ├── compare └── compare.go ├── concurrent ├── concurrent.go └── concurrent_test.go ├── cookbook ├── cookbook_templates.go ├── recipes.go ├── recipes_test.go └── templates │ ├── admin.gotxt │ ├── all-masters.gotxt │ ├── circular_replication.gotxt │ ├── custom-named-replication.gotxt │ ├── custom-users.gotxt │ ├── delete.gotxt │ ├── fan-in.gotxt │ ├── group-multi.gotxt │ ├── group-single.gotxt │ ├── include.gotxt │ ├── master-slave.gotxt │ ├── ndb.gotxt │ ├── prerequisites.gotxt │ ├── pxc.gotxt │ ├── remote.gotxt │ ├── replication-operations.gotxt │ ├── replication-restart.gotxt │ ├── replication_between_groups.gotxt │ ├── replication_between_master_slave.gotxt │ ├── replication_between_ndb.gotxt │ ├── replication_between_single.gotxt │ ├── replication_group_master_slave.gotxt │ ├── replication_group_single.gotxt │ ├── replication_master_slave_group.gotxt │ ├── replication_multi_versions.gotxt │ ├── replication_single_group.gotxt │ ├── show.gotxt │ ├── single-reinstall.gotxt │ ├── single.gotxt │ ├── skip-start-replication.gotxt │ ├── skip-start-single.gotxt │ ├── tidb.gotxt │ └── upgrade.gotxt ├── data_load └── data_load.go ├── defaults ├── catalog.go ├── defaults.go └── logging.go ├── docs ├── API │ ├── API-1.0.md │ ├── API-1.1.md │ ├── API-1.10.md │ ├── API-1.11.md │ ├── API-1.12.md │ ├── API-1.13.md │ ├── API-1.14.md │ ├── API-1.16.md │ ├── API-1.17.md │ ├── API-1.18.md │ ├── API-1.19.md │ ├── API-1.2.md │ ├── API-1.21.md │ ├── API-1.23.md │ ├── API-1.24.md │ ├── API-1.25.md │ ├── API-1.26.md │ ├── API-1.28.md │ ├── API-1.29.md │ ├── API-1.3.md │ ├── API-1.30.md │ ├── API-1.31.md │ ├── API-1.32.md │ ├── API-1.33.md │ ├── API-1.34.md │ ├── API-1.35.md │ ├── API-1.36.md │ ├── API-1.37.md │ ├── API-1.39.md │ ├── API-1.4.md │ ├── API-1.40.md │ ├── API-1.41.md │ ├── API-1.42.md │ ├── API-1.44.md │ ├── API-1.45.md │ ├── API-1.49.md │ ├── API-1.5.md │ ├── API-1.50.md │ ├── API-1.51.md │ ├── API-1.52.md │ ├── API-1.53.md │ ├── API-1.54.md │ ├── API-1.56.md │ ├── API-1.57.md │ ├── API-1.58.md │ ├── API-1.6.md │ ├── API-1.61.md │ ├── API-1.62.md │ ├── API-1.66.md │ ├── API-1.68.md │ ├── API-1.69.md │ ├── API-1.7.md │ ├── API-1.8.md │ └── API-1.9.md ├── asciinema-demo-0.2.0.json ├── coding │ ├── dbdeployer-as-library.md │ ├── minimal-sandbox.go │ └── minimal-sandbox2.go ├── dbdeployer-installation.gif ├── dbdeployer_completion.sh ├── development_plan.md ├── env_variables.md └── features.md ├── downloads ├── guess_latest.go ├── remote_registry.go ├── remote_registry_test.go ├── remote_tarballs.go ├── removed_tarball_list.json ├── tarball_list.json └── tarball_registry.go ├── globals ├── globals.go └── template_names.go ├── go.mod ├── go.sum ├── importing └── importing.go ├── main.go ├── mkreadme ├── api_template.md ├── build_readme.sh ├── make_readme.go └── readme_template.md ├── mkwiki ├── build.sh ├── full_doc.markdown ├── make_docs.go └── wiki_template.markdown ├── ops ├── defaults.go ├── delete_binaries.go ├── downloads.go ├── downloads_test.go ├── init.go ├── sql.go ├── unpack.go └── versions.go ├── rest ├── rest.go └── rest_test.go ├── sandbox ├── group_replication.go ├── group_templates.go ├── import_templates.go ├── mock.go ├── multi-source-replication.go ├── multi_templates.go ├── multiple.go ├── ndb_replication.go ├── ndb_templates.go ├── pxc_replication.go ├── pxc_templates.go ├── repl_templates.go ├── replication.go ├── sandbox.go ├── sandbox_test.go ├── templates.go ├── templates │ ├── group │ │ ├── check_nodes.gotxt │ │ ├── group_repl_options.gotxt │ │ └── init_nodes.gotxt │ ├── import │ │ ├── import_metadata.gotxt │ │ ├── import_my_cnf.gotxt │ │ ├── import_mysqlsh.gotxt │ │ ├── import_no_op.gotxt │ │ ├── import_sb_include.gotxt │ │ ├── import_status.gotxt │ │ ├── import_test_sb.gotxt │ │ └── import_use.gotxt │ ├── mock │ │ ├── mysqld_safe_mock.gotxt │ │ ├── no_op_mock.gotxt │ │ └── tidb_mock.gotxt │ ├── multiple │ │ ├── clear_multi.gotxt │ │ ├── exec_multi.gotxt │ │ ├── metadata_multi.gotxt │ │ ├── node.gotxt │ │ ├── node_admin.gotxt │ │ ├── replicate_from_multi.gotxt │ │ ├── restart_multi.gotxt │ │ ├── send_kill_multi.gotxt │ │ ├── start_multi.gotxt │ │ ├── status_multi.gotxt │ │ ├── stop_multi.gotxt │ │ ├── sysbench_multi.gotxt │ │ ├── sysbench_ready_multi.gotxt │ │ ├── test_sb_multi.gotxt │ │ ├── use_multi.gotxt │ │ └── use_multi_admin.gotxt │ ├── ndb │ │ ├── ndb_check_status.gotxt │ │ ├── ndb_config.gotxt │ │ ├── ndb_mgm.gotxt │ │ ├── ndb_start_cluster.gotxt │ │ └── ndb_stop_cluster.gotxt │ ├── pxc │ │ ├── check_pxc_nodes.gotxt │ │ ├── pxc_replication.gotxt │ │ └── pxc_start.gotxt │ ├── replication │ │ ├── check_multi_source.gotxt │ │ ├── check_slaves.gotxt │ │ ├── clear_all.gotxt │ │ ├── exec_all.gotxt │ │ ├── exec_all_masters.gotxt │ │ ├── exec_all_slaves.gotxt │ │ ├── init_slaves.gotxt │ │ ├── master.gotxt │ │ ├── master_admin.gotxt │ │ ├── metadata_all.gotxt │ │ ├── multi_source.gotxt │ │ ├── multi_source_exec_masters.gotxt │ │ ├── multi_source_exec_slaves.gotxt │ │ ├── multi_source_test.gotxt │ │ ├── multi_source_use_masters.gotxt │ │ ├── multi_source_use_slaves.gotxt │ │ ├── repl_replicate_from.gotxt │ │ ├── repl_sysbench.gotxt │ │ ├── repl_sysbench_ready.gotxt │ │ ├── restart_all.gotxt │ │ ├── semi_sync_start.gotxt │ │ ├── send_kill_all.gotxt │ │ ├── slave.gotxt │ │ ├── slave_admin.gotxt │ │ ├── start_all.gotxt │ │ ├── status_all.gotxt │ │ ├── stop_all.gotxt │ │ ├── test_replication.gotxt │ │ ├── test_sb_all.gotxt │ │ ├── use_all.gotxt │ │ ├── use_all_admin.gotxt │ │ ├── use_all_masters.gotxt │ │ ├── use_all_slaves.gotxt │ │ └── wipe_and_restart_all.gotxt │ ├── single │ │ ├── add_option.gotxt │ │ ├── after_start.gotxt │ │ ├── clear.gotxt │ │ ├── clone_connection_sql.gotxt │ │ ├── clone_from.gotxt │ │ ├── connection_info_conf.gotxt │ │ ├── connection_info_json.gotxt │ │ ├── connection_info_sql.gotxt │ │ ├── connection_info_super_conf.gotxt │ │ ├── connection_info_super_json.gotxt │ │ ├── expose_dd_tables.gotxt │ │ ├── grants57.gotxt │ │ ├── grants5x.gotxt │ │ ├── grants8x.gotxt │ │ ├── gtid_options_56.gotxt │ │ ├── gtid_options_57.gotxt │ │ ├── init_db.gotxt │ │ ├── load_grants.gotxt │ │ ├── metadata.gotxt │ │ ├── my.gotxt │ │ ├── my_cnf.gotxt │ │ ├── mysqlsh.gotxt │ │ ├── repl_crash_safe_options.gotxt │ │ ├── replicate_from.gotxt │ │ ├── replication_options.gotxt │ │ ├── restart.gotxt │ │ ├── sb_include.gotxt │ │ ├── sb_locked.gotxt │ │ ├── semisync_master_options.gotxt │ │ ├── semisync_slave_options.gotxt │ │ ├── send_kill.gotxt │ │ ├── show_binlog.gotxt │ │ ├── show_log.gotxt │ │ ├── show_relaylog.gotxt │ │ ├── start.gotxt │ │ ├── status.gotxt │ │ ├── stop.gotxt │ │ ├── sysbench.gotxt │ │ ├── sysbench_ready.gotxt │ │ ├── task_user_grants.gotxt │ │ ├── test_sb.gotxt │ │ ├── use.gotxt │ │ ├── use_admin.gotxt │ │ └── wipe_and_restart.gotxt │ └── tidb │ │ ├── after_start.gotxt │ │ ├── grants_5x.gotxt │ │ ├── init_db.gotxt │ │ ├── my_cnf.gotxt │ │ ├── send_kill.gotxt │ │ ├── start.gotxt │ │ └── stop.gotxt └── tidb_templates.go ├── scripts ├── build.sh ├── ci.sh ├── dbdeployer-install.sh ├── get_dbdeployer_mysql_json.sh ├── sanity_check.sh └── set_version.sh ├── test ├── all_tests.sh ├── alt_dbdeployer.sh ├── common.sh ├── cookbook-test.sh ├── docker-test.sh ├── functional-test.sh ├── go-unit-tests.sh ├── mock │ ├── cookbook.sh │ ├── default-sandbox.sh │ ├── defaults-change.sh │ ├── defaults-info.sh │ ├── direct-paths.sh │ ├── expected_ports.sh │ ├── fanin_test.sh │ ├── ndb_test.sh │ ├── parallel.sh │ ├── port-clash.sh │ ├── pxc_test.sh │ ├── replication-setup.sh │ ├── set-mock.sh │ └── short-versions.sh ├── run-docker-dbdeployer-base.sh ├── run-init-test.sh ├── run-mock-tests.sh ├── sort_versions.go ├── test-init.sh ├── test-linux-init.sh └── unpack-test.sh ├── ts ├── README.md ├── commands.go ├── conditions.go ├── setup.go ├── templates │ ├── feature │ │ ├── circular-replication.tmpl │ │ ├── data-load-single.tmpl │ │ ├── dd-expose-tables.tmpl │ │ ├── multiple.tmpl │ │ ├── single-custom-credentials.tmpl │ │ ├── single-skip-start.tmpl │ │ ├── single.tmpl │ │ └── use-admin.tmpl │ ├── group │ │ ├── group.tmpl │ │ └── group_sp.tmpl │ ├── multi-source │ │ ├── all-masters.tmpl │ │ └── fan-in.tmpl │ └── replication │ │ ├── replication-gtid.tmpl │ │ ├── replication.tmpl │ │ └── semisync.tmpl ├── test_helpers.go └── ts_test.go ├── ts_static ├── README.md ├── downloads-arch │ ├── README.md │ ├── dl-amd64.json │ ├── dl-arm64.json │ ├── dl.json │ ├── mysql-4.1.97-linux-arm64.tar.gz │ ├── mysql-4.1.97-linux-x86_64.tar.gz │ ├── mysql-4.1.97-macos-arm64.tar.gz │ ├── mysql-4.1.97-macos-x86_64.tar.gz │ ├── mysql-5.0.97-linux-arm64.tar.gz │ ├── mysql-5.0.97-linux-x86_64.tar.gz │ ├── mysql-5.0.97-macos-arm64.tar.gz │ ├── mysql-5.0.97-macos-x86_64.tar.gz │ ├── mysql-5.1.97-linux-arm64.tar.gz │ ├── mysql-5.1.97-linux-x86_64.tar.gz │ ├── mysql-5.1.97-macos-arm64.tar.gz │ ├── mysql-5.1.97-macos-x86_64.tar.gz │ ├── mysql-5.5.97-linux-arm64.tar.gz │ ├── mysql-5.5.97-linux-x86_64.tar.gz │ ├── mysql-5.5.97-macos-arm64.tar.gz │ ├── mysql-5.5.97-macos-x86_64.tar.gz │ ├── mysql-5.6.97-linux-arm64.tar.gz │ ├── mysql-5.6.97-linux-x86_64.tar.gz │ ├── mysql-5.6.97-macos-arm64.tar.gz │ ├── mysql-5.6.97-macos-x86_64.tar.gz │ ├── mysql-5.7.97-linux-arm64.tar.xz │ ├── mysql-5.7.97-linux-x86_64.tar.xz │ ├── mysql-5.7.97-macos-arm64.tar.gz │ ├── mysql-5.7.97-macos-x86_64.tar.gz │ ├── mysql-8.0.97-linux-arm64.tar.xz │ ├── mysql-8.0.97-linux-x86_64.tar.xz │ ├── mysql-8.0.97-macos-arm64.tar.gz │ └── mysql-8.0.97-macos-x86_64.tar.gz ├── testdata │ ├── errors.txtar │ ├── mock-defaults.txtar │ ├── mock-deploy.txtar │ ├── mock-downloads.txtar │ └── mock-info.txtar └── ts_static_test.go └── unpack ├── gunzip.go ├── unpack-shell.go ├── unpack.go └── unpack_test.go /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/goland_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/.github/goland_logo.png -------------------------------------------------------------------------------- /.github/workflows/all_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/.github/workflows/all_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/BUGS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.dbdeployer.com -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/_config.yml -------------------------------------------------------------------------------- /abbreviations/abbreviations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/abbreviations/abbreviations.go -------------------------------------------------------------------------------- /abbreviations/abbreviations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/abbreviations/abbreviations_test.go -------------------------------------------------------------------------------- /abbreviations/sample_abbreviations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/abbreviations/sample_abbreviations.txt -------------------------------------------------------------------------------- /cmd/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/admin.go -------------------------------------------------------------------------------- /cmd/admin_default_sandbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/admin_default_sandbox.go -------------------------------------------------------------------------------- /cmd/cookbook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/cookbook.go -------------------------------------------------------------------------------- /cmd/data_load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/data_load.go -------------------------------------------------------------------------------- /cmd/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/defaults.go -------------------------------------------------------------------------------- /cmd/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/delete.go -------------------------------------------------------------------------------- /cmd/delete_binaries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/delete_binaries.go -------------------------------------------------------------------------------- /cmd/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/deploy.go -------------------------------------------------------------------------------- /cmd/downloads.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/downloads.go -------------------------------------------------------------------------------- /cmd/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/export.go -------------------------------------------------------------------------------- /cmd/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/export_test.go -------------------------------------------------------------------------------- /cmd/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/global.go -------------------------------------------------------------------------------- /cmd/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/import.go -------------------------------------------------------------------------------- /cmd/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/info.go -------------------------------------------------------------------------------- /cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/init.go -------------------------------------------------------------------------------- /cmd/multiple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/multiple.go -------------------------------------------------------------------------------- /cmd/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/remote.go -------------------------------------------------------------------------------- /cmd/replication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/replication.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/sandboxes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/sandboxes.go -------------------------------------------------------------------------------- /cmd/single.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/single.go -------------------------------------------------------------------------------- /cmd/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/templates.go -------------------------------------------------------------------------------- /cmd/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/tree.go -------------------------------------------------------------------------------- /cmd/unpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/unpack.go -------------------------------------------------------------------------------- /cmd/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/update.go -------------------------------------------------------------------------------- /cmd/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/usage.go -------------------------------------------------------------------------------- /cmd/use.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/use.go -------------------------------------------------------------------------------- /cmd/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cmd/versions.go -------------------------------------------------------------------------------- /common/COMPATIBLE_VERSION: -------------------------------------------------------------------------------- 1 | 1.70.0 -------------------------------------------------------------------------------- /common/VERSION: -------------------------------------------------------------------------------- 1 | 1.73.0 -------------------------------------------------------------------------------- /common/capabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/capabilities.go -------------------------------------------------------------------------------- /common/capabilities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/capabilities_test.go -------------------------------------------------------------------------------- /common/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/checks.go -------------------------------------------------------------------------------- /common/checks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/checks_test.go -------------------------------------------------------------------------------- /common/fileutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/fileutil.go -------------------------------------------------------------------------------- /common/fileutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/fileutil_test.go -------------------------------------------------------------------------------- /common/regexp_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/regexp_util.go -------------------------------------------------------------------------------- /common/regexp_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/regexp_util_test.go -------------------------------------------------------------------------------- /common/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/stack.go -------------------------------------------------------------------------------- /common/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/stack_test.go -------------------------------------------------------------------------------- /common/strutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/strutils.go -------------------------------------------------------------------------------- /common/strutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/strutils_test.go -------------------------------------------------------------------------------- /common/tprintf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/tprintf.go -------------------------------------------------------------------------------- /common/tprintf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/tprintf_test.go -------------------------------------------------------------------------------- /common/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/version.go -------------------------------------------------------------------------------- /common/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/common/version_test.go -------------------------------------------------------------------------------- /compare/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/compare/compare.go -------------------------------------------------------------------------------- /concurrent/concurrent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/concurrent/concurrent.go -------------------------------------------------------------------------------- /concurrent/concurrent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/concurrent/concurrent_test.go -------------------------------------------------------------------------------- /cookbook/cookbook_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/cookbook_templates.go -------------------------------------------------------------------------------- /cookbook/recipes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/recipes.go -------------------------------------------------------------------------------- /cookbook/recipes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/recipes_test.go -------------------------------------------------------------------------------- /cookbook/templates/admin.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/admin.gotxt -------------------------------------------------------------------------------- /cookbook/templates/all-masters.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/all-masters.gotxt -------------------------------------------------------------------------------- /cookbook/templates/circular_replication.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/circular_replication.gotxt -------------------------------------------------------------------------------- /cookbook/templates/custom-named-replication.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/custom-named-replication.gotxt -------------------------------------------------------------------------------- /cookbook/templates/custom-users.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/custom-users.gotxt -------------------------------------------------------------------------------- /cookbook/templates/delete.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/delete.gotxt -------------------------------------------------------------------------------- /cookbook/templates/fan-in.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/fan-in.gotxt -------------------------------------------------------------------------------- /cookbook/templates/group-multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/group-multi.gotxt -------------------------------------------------------------------------------- /cookbook/templates/group-single.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/group-single.gotxt -------------------------------------------------------------------------------- /cookbook/templates/include.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/include.gotxt -------------------------------------------------------------------------------- /cookbook/templates/master-slave.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/master-slave.gotxt -------------------------------------------------------------------------------- /cookbook/templates/ndb.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/ndb.gotxt -------------------------------------------------------------------------------- /cookbook/templates/prerequisites.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/prerequisites.gotxt -------------------------------------------------------------------------------- /cookbook/templates/pxc.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/pxc.gotxt -------------------------------------------------------------------------------- /cookbook/templates/remote.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/remote.gotxt -------------------------------------------------------------------------------- /cookbook/templates/replication-operations.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/replication-operations.gotxt -------------------------------------------------------------------------------- /cookbook/templates/replication-restart.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/replication-restart.gotxt -------------------------------------------------------------------------------- /cookbook/templates/replication_between_groups.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/replication_between_groups.gotxt -------------------------------------------------------------------------------- /cookbook/templates/replication_between_master_slave.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/replication_between_master_slave.gotxt -------------------------------------------------------------------------------- /cookbook/templates/replication_between_ndb.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/replication_between_ndb.gotxt -------------------------------------------------------------------------------- /cookbook/templates/replication_between_single.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/replication_between_single.gotxt -------------------------------------------------------------------------------- /cookbook/templates/replication_group_master_slave.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/replication_group_master_slave.gotxt -------------------------------------------------------------------------------- /cookbook/templates/replication_group_single.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/replication_group_single.gotxt -------------------------------------------------------------------------------- /cookbook/templates/replication_master_slave_group.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/replication_master_slave_group.gotxt -------------------------------------------------------------------------------- /cookbook/templates/replication_multi_versions.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/replication_multi_versions.gotxt -------------------------------------------------------------------------------- /cookbook/templates/replication_single_group.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/replication_single_group.gotxt -------------------------------------------------------------------------------- /cookbook/templates/show.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/show.gotxt -------------------------------------------------------------------------------- /cookbook/templates/single-reinstall.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/single-reinstall.gotxt -------------------------------------------------------------------------------- /cookbook/templates/single.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/single.gotxt -------------------------------------------------------------------------------- /cookbook/templates/skip-start-replication.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/skip-start-replication.gotxt -------------------------------------------------------------------------------- /cookbook/templates/skip-start-single.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/skip-start-single.gotxt -------------------------------------------------------------------------------- /cookbook/templates/tidb.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/tidb.gotxt -------------------------------------------------------------------------------- /cookbook/templates/upgrade.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/cookbook/templates/upgrade.gotxt -------------------------------------------------------------------------------- /data_load/data_load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/data_load/data_load.go -------------------------------------------------------------------------------- /defaults/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/defaults/catalog.go -------------------------------------------------------------------------------- /defaults/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/defaults/defaults.go -------------------------------------------------------------------------------- /defaults/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/defaults/logging.go -------------------------------------------------------------------------------- /docs/API/API-1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.0.md -------------------------------------------------------------------------------- /docs/API/API-1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.1.md -------------------------------------------------------------------------------- /docs/API/API-1.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.10.md -------------------------------------------------------------------------------- /docs/API/API-1.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.11.md -------------------------------------------------------------------------------- /docs/API/API-1.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.12.md -------------------------------------------------------------------------------- /docs/API/API-1.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.13.md -------------------------------------------------------------------------------- /docs/API/API-1.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.14.md -------------------------------------------------------------------------------- /docs/API/API-1.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.16.md -------------------------------------------------------------------------------- /docs/API/API-1.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.17.md -------------------------------------------------------------------------------- /docs/API/API-1.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.18.md -------------------------------------------------------------------------------- /docs/API/API-1.19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.19.md -------------------------------------------------------------------------------- /docs/API/API-1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.2.md -------------------------------------------------------------------------------- /docs/API/API-1.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.21.md -------------------------------------------------------------------------------- /docs/API/API-1.23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.23.md -------------------------------------------------------------------------------- /docs/API/API-1.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.24.md -------------------------------------------------------------------------------- /docs/API/API-1.25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.25.md -------------------------------------------------------------------------------- /docs/API/API-1.26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.26.md -------------------------------------------------------------------------------- /docs/API/API-1.28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.28.md -------------------------------------------------------------------------------- /docs/API/API-1.29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.29.md -------------------------------------------------------------------------------- /docs/API/API-1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.3.md -------------------------------------------------------------------------------- /docs/API/API-1.30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.30.md -------------------------------------------------------------------------------- /docs/API/API-1.31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.31.md -------------------------------------------------------------------------------- /docs/API/API-1.32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.32.md -------------------------------------------------------------------------------- /docs/API/API-1.33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.33.md -------------------------------------------------------------------------------- /docs/API/API-1.34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.34.md -------------------------------------------------------------------------------- /docs/API/API-1.35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.35.md -------------------------------------------------------------------------------- /docs/API/API-1.36.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.36.md -------------------------------------------------------------------------------- /docs/API/API-1.37.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.37.md -------------------------------------------------------------------------------- /docs/API/API-1.39.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.39.md -------------------------------------------------------------------------------- /docs/API/API-1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.4.md -------------------------------------------------------------------------------- /docs/API/API-1.40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.40.md -------------------------------------------------------------------------------- /docs/API/API-1.41.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.41.md -------------------------------------------------------------------------------- /docs/API/API-1.42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.42.md -------------------------------------------------------------------------------- /docs/API/API-1.44.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.44.md -------------------------------------------------------------------------------- /docs/API/API-1.45.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.45.md -------------------------------------------------------------------------------- /docs/API/API-1.49.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.49.md -------------------------------------------------------------------------------- /docs/API/API-1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.5.md -------------------------------------------------------------------------------- /docs/API/API-1.50.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.50.md -------------------------------------------------------------------------------- /docs/API/API-1.51.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.51.md -------------------------------------------------------------------------------- /docs/API/API-1.52.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.52.md -------------------------------------------------------------------------------- /docs/API/API-1.53.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.53.md -------------------------------------------------------------------------------- /docs/API/API-1.54.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.54.md -------------------------------------------------------------------------------- /docs/API/API-1.56.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.56.md -------------------------------------------------------------------------------- /docs/API/API-1.57.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.57.md -------------------------------------------------------------------------------- /docs/API/API-1.58.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.58.md -------------------------------------------------------------------------------- /docs/API/API-1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.6.md -------------------------------------------------------------------------------- /docs/API/API-1.61.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.61.md -------------------------------------------------------------------------------- /docs/API/API-1.62.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.62.md -------------------------------------------------------------------------------- /docs/API/API-1.66.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.66.md -------------------------------------------------------------------------------- /docs/API/API-1.68.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.68.md -------------------------------------------------------------------------------- /docs/API/API-1.69.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.69.md -------------------------------------------------------------------------------- /docs/API/API-1.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.7.md -------------------------------------------------------------------------------- /docs/API/API-1.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.8.md -------------------------------------------------------------------------------- /docs/API/API-1.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/API/API-1.9.md -------------------------------------------------------------------------------- /docs/asciinema-demo-0.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/asciinema-demo-0.2.0.json -------------------------------------------------------------------------------- /docs/coding/dbdeployer-as-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/coding/dbdeployer-as-library.md -------------------------------------------------------------------------------- /docs/coding/minimal-sandbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/coding/minimal-sandbox.go -------------------------------------------------------------------------------- /docs/coding/minimal-sandbox2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/coding/minimal-sandbox2.go -------------------------------------------------------------------------------- /docs/dbdeployer-installation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/dbdeployer-installation.gif -------------------------------------------------------------------------------- /docs/dbdeployer_completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/dbdeployer_completion.sh -------------------------------------------------------------------------------- /docs/development_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/development_plan.md -------------------------------------------------------------------------------- /docs/env_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/env_variables.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/docs/features.md -------------------------------------------------------------------------------- /downloads/guess_latest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/downloads/guess_latest.go -------------------------------------------------------------------------------- /downloads/remote_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/downloads/remote_registry.go -------------------------------------------------------------------------------- /downloads/remote_registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/downloads/remote_registry_test.go -------------------------------------------------------------------------------- /downloads/remote_tarballs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/downloads/remote_tarballs.go -------------------------------------------------------------------------------- /downloads/removed_tarball_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/downloads/removed_tarball_list.json -------------------------------------------------------------------------------- /downloads/tarball_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/downloads/tarball_list.json -------------------------------------------------------------------------------- /downloads/tarball_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/downloads/tarball_registry.go -------------------------------------------------------------------------------- /globals/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/globals/globals.go -------------------------------------------------------------------------------- /globals/template_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/globals/template_names.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/go.sum -------------------------------------------------------------------------------- /importing/importing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/importing/importing.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/main.go -------------------------------------------------------------------------------- /mkreadme/api_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/mkreadme/api_template.md -------------------------------------------------------------------------------- /mkreadme/build_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/mkreadme/build_readme.sh -------------------------------------------------------------------------------- /mkreadme/make_readme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/mkreadme/make_readme.go -------------------------------------------------------------------------------- /mkreadme/readme_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/mkreadme/readme_template.md -------------------------------------------------------------------------------- /mkwiki/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/mkwiki/build.sh -------------------------------------------------------------------------------- /mkwiki/full_doc.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/mkwiki/full_doc.markdown -------------------------------------------------------------------------------- /mkwiki/make_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/mkwiki/make_docs.go -------------------------------------------------------------------------------- /mkwiki/wiki_template.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/mkwiki/wiki_template.markdown -------------------------------------------------------------------------------- /ops/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ops/defaults.go -------------------------------------------------------------------------------- /ops/delete_binaries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ops/delete_binaries.go -------------------------------------------------------------------------------- /ops/downloads.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ops/downloads.go -------------------------------------------------------------------------------- /ops/downloads_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ops/downloads_test.go -------------------------------------------------------------------------------- /ops/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ops/init.go -------------------------------------------------------------------------------- /ops/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ops/sql.go -------------------------------------------------------------------------------- /ops/unpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ops/unpack.go -------------------------------------------------------------------------------- /ops/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ops/versions.go -------------------------------------------------------------------------------- /rest/rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/rest/rest.go -------------------------------------------------------------------------------- /rest/rest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/rest/rest_test.go -------------------------------------------------------------------------------- /sandbox/group_replication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/group_replication.go -------------------------------------------------------------------------------- /sandbox/group_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/group_templates.go -------------------------------------------------------------------------------- /sandbox/import_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/import_templates.go -------------------------------------------------------------------------------- /sandbox/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/mock.go -------------------------------------------------------------------------------- /sandbox/multi-source-replication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/multi-source-replication.go -------------------------------------------------------------------------------- /sandbox/multi_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/multi_templates.go -------------------------------------------------------------------------------- /sandbox/multiple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/multiple.go -------------------------------------------------------------------------------- /sandbox/ndb_replication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/ndb_replication.go -------------------------------------------------------------------------------- /sandbox/ndb_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/ndb_templates.go -------------------------------------------------------------------------------- /sandbox/pxc_replication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/pxc_replication.go -------------------------------------------------------------------------------- /sandbox/pxc_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/pxc_templates.go -------------------------------------------------------------------------------- /sandbox/repl_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/repl_templates.go -------------------------------------------------------------------------------- /sandbox/replication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/replication.go -------------------------------------------------------------------------------- /sandbox/sandbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/sandbox.go -------------------------------------------------------------------------------- /sandbox/sandbox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/sandbox_test.go -------------------------------------------------------------------------------- /sandbox/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates.go -------------------------------------------------------------------------------- /sandbox/templates/group/check_nodes.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/group/check_nodes.gotxt -------------------------------------------------------------------------------- /sandbox/templates/group/group_repl_options.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/group/group_repl_options.gotxt -------------------------------------------------------------------------------- /sandbox/templates/group/init_nodes.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/group/init_nodes.gotxt -------------------------------------------------------------------------------- /sandbox/templates/import/import_metadata.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/import/import_metadata.gotxt -------------------------------------------------------------------------------- /sandbox/templates/import/import_my_cnf.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/import/import_my_cnf.gotxt -------------------------------------------------------------------------------- /sandbox/templates/import/import_mysqlsh.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/import/import_mysqlsh.gotxt -------------------------------------------------------------------------------- /sandbox/templates/import/import_no_op.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/import/import_no_op.gotxt -------------------------------------------------------------------------------- /sandbox/templates/import/import_sb_include.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/import/import_sb_include.gotxt -------------------------------------------------------------------------------- /sandbox/templates/import/import_status.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/import/import_status.gotxt -------------------------------------------------------------------------------- /sandbox/templates/import/import_test_sb.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/import/import_test_sb.gotxt -------------------------------------------------------------------------------- /sandbox/templates/import/import_use.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/import/import_use.gotxt -------------------------------------------------------------------------------- /sandbox/templates/mock/mysqld_safe_mock.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/mock/mysqld_safe_mock.gotxt -------------------------------------------------------------------------------- /sandbox/templates/mock/no_op_mock.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/mock/no_op_mock.gotxt -------------------------------------------------------------------------------- /sandbox/templates/mock/tidb_mock.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/mock/tidb_mock.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/clear_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/clear_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/exec_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/exec_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/metadata_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/metadata_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/node.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/node.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/node_admin.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/node_admin.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/replicate_from_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/replicate_from_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/restart_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/restart_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/send_kill_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/send_kill_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/start_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/start_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/status_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/status_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/stop_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/stop_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/sysbench_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/sysbench_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/sysbench_ready_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/sysbench_ready_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/test_sb_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/test_sb_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/use_multi.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/use_multi.gotxt -------------------------------------------------------------------------------- /sandbox/templates/multiple/use_multi_admin.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/multiple/use_multi_admin.gotxt -------------------------------------------------------------------------------- /sandbox/templates/ndb/ndb_check_status.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/ndb/ndb_check_status.gotxt -------------------------------------------------------------------------------- /sandbox/templates/ndb/ndb_config.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/ndb/ndb_config.gotxt -------------------------------------------------------------------------------- /sandbox/templates/ndb/ndb_mgm.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/ndb/ndb_mgm.gotxt -------------------------------------------------------------------------------- /sandbox/templates/ndb/ndb_start_cluster.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/ndb/ndb_start_cluster.gotxt -------------------------------------------------------------------------------- /sandbox/templates/ndb/ndb_stop_cluster.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/ndb/ndb_stop_cluster.gotxt -------------------------------------------------------------------------------- /sandbox/templates/pxc/check_pxc_nodes.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/pxc/check_pxc_nodes.gotxt -------------------------------------------------------------------------------- /sandbox/templates/pxc/pxc_replication.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/pxc/pxc_replication.gotxt -------------------------------------------------------------------------------- /sandbox/templates/pxc/pxc_start.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/pxc/pxc_start.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/check_multi_source.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/check_multi_source.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/check_slaves.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/check_slaves.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/clear_all.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/clear_all.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/exec_all.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/exec_all.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/exec_all_masters.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/exec_all_masters.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/exec_all_slaves.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/exec_all_slaves.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/init_slaves.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/init_slaves.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/master.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/master.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/master_admin.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/master_admin.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/metadata_all.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/metadata_all.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/multi_source.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/multi_source.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/multi_source_exec_masters.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/multi_source_exec_masters.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/multi_source_exec_slaves.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/multi_source_exec_slaves.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/multi_source_test.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/multi_source_test.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/multi_source_use_masters.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/multi_source_use_masters.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/multi_source_use_slaves.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/multi_source_use_slaves.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/repl_replicate_from.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/repl_replicate_from.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/repl_sysbench.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/repl_sysbench.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/repl_sysbench_ready.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/repl_sysbench_ready.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/restart_all.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/restart_all.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/semi_sync_start.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/semi_sync_start.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/send_kill_all.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/send_kill_all.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/slave.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/slave.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/slave_admin.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/slave_admin.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/start_all.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/start_all.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/status_all.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/status_all.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/stop_all.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/stop_all.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/test_replication.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/test_replication.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/test_sb_all.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/test_sb_all.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/use_all.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/use_all.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/use_all_admin.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/use_all_admin.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/use_all_masters.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/use_all_masters.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/use_all_slaves.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/use_all_slaves.gotxt -------------------------------------------------------------------------------- /sandbox/templates/replication/wipe_and_restart_all.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/replication/wipe_and_restart_all.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/add_option.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/add_option.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/after_start.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/after_start.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/clear.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/clear.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/clone_connection_sql.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/clone_connection_sql.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/clone_from.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/clone_from.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/connection_info_conf.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/connection_info_conf.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/connection_info_json.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/connection_info_json.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/connection_info_sql.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/connection_info_sql.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/connection_info_super_conf.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/connection_info_super_conf.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/connection_info_super_json.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/connection_info_super_json.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/expose_dd_tables.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/expose_dd_tables.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/grants57.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/grants57.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/grants5x.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/grants5x.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/grants8x.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/grants8x.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/gtid_options_56.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/gtid_options_56.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/gtid_options_57.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/gtid_options_57.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/init_db.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/init_db.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/load_grants.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/load_grants.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/metadata.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/metadata.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/my.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/my.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/my_cnf.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/my_cnf.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/mysqlsh.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/mysqlsh.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/repl_crash_safe_options.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/repl_crash_safe_options.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/replicate_from.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/replicate_from.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/replication_options.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/replication_options.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/restart.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/restart.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/sb_include.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/sb_include.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/sb_locked.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/sb_locked.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/semisync_master_options.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/semisync_master_options.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/semisync_slave_options.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/semisync_slave_options.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/send_kill.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/send_kill.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/show_binlog.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/show_binlog.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/show_log.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/show_log.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/show_relaylog.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/show_relaylog.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/start.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/start.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/status.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/status.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/stop.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/stop.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/sysbench.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/sysbench.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/sysbench_ready.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/sysbench_ready.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/task_user_grants.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/task_user_grants.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/test_sb.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/test_sb.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/use.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/use.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/use_admin.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/use_admin.gotxt -------------------------------------------------------------------------------- /sandbox/templates/single/wipe_and_restart.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/single/wipe_and_restart.gotxt -------------------------------------------------------------------------------- /sandbox/templates/tidb/after_start.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/tidb/after_start.gotxt -------------------------------------------------------------------------------- /sandbox/templates/tidb/grants_5x.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/tidb/grants_5x.gotxt -------------------------------------------------------------------------------- /sandbox/templates/tidb/init_db.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/tidb/init_db.gotxt -------------------------------------------------------------------------------- /sandbox/templates/tidb/my_cnf.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/tidb/my_cnf.gotxt -------------------------------------------------------------------------------- /sandbox/templates/tidb/send_kill.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/tidb/send_kill.gotxt -------------------------------------------------------------------------------- /sandbox/templates/tidb/start.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/tidb/start.gotxt -------------------------------------------------------------------------------- /sandbox/templates/tidb/stop.gotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/templates/tidb/stop.gotxt -------------------------------------------------------------------------------- /sandbox/tidb_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/sandbox/tidb_templates.go -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/scripts/ci.sh -------------------------------------------------------------------------------- /scripts/dbdeployer-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/scripts/dbdeployer-install.sh -------------------------------------------------------------------------------- /scripts/get_dbdeployer_mysql_json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/scripts/get_dbdeployer_mysql_json.sh -------------------------------------------------------------------------------- /scripts/sanity_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/scripts/sanity_check.sh -------------------------------------------------------------------------------- /scripts/set_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/scripts/set_version.sh -------------------------------------------------------------------------------- /test/all_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/all_tests.sh -------------------------------------------------------------------------------- /test/alt_dbdeployer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/alt_dbdeployer.sh -------------------------------------------------------------------------------- /test/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/common.sh -------------------------------------------------------------------------------- /test/cookbook-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/cookbook-test.sh -------------------------------------------------------------------------------- /test/docker-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/docker-test.sh -------------------------------------------------------------------------------- /test/functional-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/functional-test.sh -------------------------------------------------------------------------------- /test/go-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/go-unit-tests.sh -------------------------------------------------------------------------------- /test/mock/cookbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/cookbook.sh -------------------------------------------------------------------------------- /test/mock/default-sandbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/default-sandbox.sh -------------------------------------------------------------------------------- /test/mock/defaults-change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/defaults-change.sh -------------------------------------------------------------------------------- /test/mock/defaults-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/defaults-info.sh -------------------------------------------------------------------------------- /test/mock/direct-paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/direct-paths.sh -------------------------------------------------------------------------------- /test/mock/expected_ports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/expected_ports.sh -------------------------------------------------------------------------------- /test/mock/fanin_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/fanin_test.sh -------------------------------------------------------------------------------- /test/mock/ndb_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/ndb_test.sh -------------------------------------------------------------------------------- /test/mock/parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/parallel.sh -------------------------------------------------------------------------------- /test/mock/port-clash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/port-clash.sh -------------------------------------------------------------------------------- /test/mock/pxc_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/pxc_test.sh -------------------------------------------------------------------------------- /test/mock/replication-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/replication-setup.sh -------------------------------------------------------------------------------- /test/mock/set-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/set-mock.sh -------------------------------------------------------------------------------- /test/mock/short-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/mock/short-versions.sh -------------------------------------------------------------------------------- /test/run-docker-dbdeployer-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/run-docker-dbdeployer-base.sh -------------------------------------------------------------------------------- /test/run-init-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/run-init-test.sh -------------------------------------------------------------------------------- /test/run-mock-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/run-mock-tests.sh -------------------------------------------------------------------------------- /test/sort_versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/sort_versions.go -------------------------------------------------------------------------------- /test/test-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/test-init.sh -------------------------------------------------------------------------------- /test/test-linux-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/test-linux-init.sh -------------------------------------------------------------------------------- /test/unpack-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/test/unpack-test.sh -------------------------------------------------------------------------------- /ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/README.md -------------------------------------------------------------------------------- /ts/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/commands.go -------------------------------------------------------------------------------- /ts/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/conditions.go -------------------------------------------------------------------------------- /ts/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/setup.go -------------------------------------------------------------------------------- /ts/templates/feature/circular-replication.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/feature/circular-replication.tmpl -------------------------------------------------------------------------------- /ts/templates/feature/data-load-single.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/feature/data-load-single.tmpl -------------------------------------------------------------------------------- /ts/templates/feature/dd-expose-tables.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/feature/dd-expose-tables.tmpl -------------------------------------------------------------------------------- /ts/templates/feature/multiple.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/feature/multiple.tmpl -------------------------------------------------------------------------------- /ts/templates/feature/single-custom-credentials.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/feature/single-custom-credentials.tmpl -------------------------------------------------------------------------------- /ts/templates/feature/single-skip-start.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/feature/single-skip-start.tmpl -------------------------------------------------------------------------------- /ts/templates/feature/single.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/feature/single.tmpl -------------------------------------------------------------------------------- /ts/templates/feature/use-admin.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/feature/use-admin.tmpl -------------------------------------------------------------------------------- /ts/templates/group/group.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/group/group.tmpl -------------------------------------------------------------------------------- /ts/templates/group/group_sp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/group/group_sp.tmpl -------------------------------------------------------------------------------- /ts/templates/multi-source/all-masters.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/multi-source/all-masters.tmpl -------------------------------------------------------------------------------- /ts/templates/multi-source/fan-in.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/multi-source/fan-in.tmpl -------------------------------------------------------------------------------- /ts/templates/replication/replication-gtid.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/replication/replication-gtid.tmpl -------------------------------------------------------------------------------- /ts/templates/replication/replication.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/replication/replication.tmpl -------------------------------------------------------------------------------- /ts/templates/replication/semisync.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/templates/replication/semisync.tmpl -------------------------------------------------------------------------------- /ts/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/test_helpers.go -------------------------------------------------------------------------------- /ts/ts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts/ts_test.go -------------------------------------------------------------------------------- /ts_static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/README.md -------------------------------------------------------------------------------- /ts_static/downloads-arch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/README.md -------------------------------------------------------------------------------- /ts_static/downloads-arch/dl-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/dl-amd64.json -------------------------------------------------------------------------------- /ts_static/downloads-arch/dl-arm64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/dl-arm64.json -------------------------------------------------------------------------------- /ts_static/downloads-arch/dl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/dl.json -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-4.1.97-linux-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-4.1.97-linux-arm64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-4.1.97-linux-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-4.1.97-linux-x86_64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-4.1.97-macos-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-4.1.97-macos-arm64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-4.1.97-macos-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-4.1.97-macos-x86_64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.0.97-linux-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.0.97-linux-arm64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.0.97-linux-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.0.97-linux-x86_64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.0.97-macos-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.0.97-macos-arm64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.0.97-macos-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.0.97-macos-x86_64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.1.97-linux-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.1.97-linux-arm64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.1.97-linux-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.1.97-linux-x86_64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.1.97-macos-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.1.97-macos-arm64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.1.97-macos-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.1.97-macos-x86_64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.5.97-linux-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.5.97-linux-arm64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.5.97-linux-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.5.97-linux-x86_64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.5.97-macos-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.5.97-macos-arm64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.5.97-macos-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.5.97-macos-x86_64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.6.97-linux-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.6.97-linux-arm64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.6.97-linux-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.6.97-linux-x86_64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.6.97-macos-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.6.97-macos-arm64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.6.97-macos-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.6.97-macos-x86_64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.7.97-linux-arm64.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.7.97-linux-arm64.tar.xz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.7.97-linux-x86_64.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.7.97-linux-x86_64.tar.xz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.7.97-macos-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.7.97-macos-arm64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-5.7.97-macos-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-5.7.97-macos-x86_64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-8.0.97-linux-arm64.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-8.0.97-linux-arm64.tar.xz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-8.0.97-linux-x86_64.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-8.0.97-linux-x86_64.tar.xz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-8.0.97-macos-arm64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-8.0.97-macos-arm64.tar.gz -------------------------------------------------------------------------------- /ts_static/downloads-arch/mysql-8.0.97-macos-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/downloads-arch/mysql-8.0.97-macos-x86_64.tar.gz -------------------------------------------------------------------------------- /ts_static/testdata/errors.txtar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/testdata/errors.txtar -------------------------------------------------------------------------------- /ts_static/testdata/mock-defaults.txtar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/testdata/mock-defaults.txtar -------------------------------------------------------------------------------- /ts_static/testdata/mock-deploy.txtar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/testdata/mock-deploy.txtar -------------------------------------------------------------------------------- /ts_static/testdata/mock-downloads.txtar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/testdata/mock-downloads.txtar -------------------------------------------------------------------------------- /ts_static/testdata/mock-info.txtar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/testdata/mock-info.txtar -------------------------------------------------------------------------------- /ts_static/ts_static_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/ts_static/ts_static_test.go -------------------------------------------------------------------------------- /unpack/gunzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/unpack/gunzip.go -------------------------------------------------------------------------------- /unpack/unpack-shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/unpack/unpack-shell.go -------------------------------------------------------------------------------- /unpack/unpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/unpack/unpack.go -------------------------------------------------------------------------------- /unpack/unpack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacharmer/dbdeployer/HEAD/unpack/unpack_test.go --------------------------------------------------------------------------------