├── .dockerignore ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── main.yml │ ├── system.yml │ └── upgrade.yml ├── .gitignore ├── .go-version ├── .project ├── LICENSE ├── README.md ├── RELEASE_VERSION ├── Vagrantfile ├── bump_release_version_and_tag ├── conf ├── orchestrator-ci-env.conf.json ├── orchestrator-ci-upgrade.conf.json ├── orchestrator-raft-env.conf.json ├── orchestrator-sample-sqlite.conf.json ├── orchestrator-sample.conf.json └── orchestrator-simple.conf.json ├── docker ├── Dockerfile ├── Dockerfile.packaging ├── Dockerfile.raft ├── Dockerfile.system ├── Dockerfile.test ├── docker-entry-raft ├── docker-entry-system ├── entrypoint.sh └── resources │ └── systemctl.py ├── docs ├── README.md ├── about.md ├── agents.md ├── bugs.md ├── build.md ├── ci-env.md ├── ci.md ├── configuration-backend.md ├── configuration-discovery-basic.md ├── configuration-discovery-classifying.md ├── configuration-discovery-pseudo-gtid.md ├── configuration-discovery-resolve.md ├── configuration-failure-detection.md ├── configuration-kv.md ├── configuration-large.md ├── configuration-raft.md ├── configuration-recovery.md ├── configuration-sample.md ├── configuration-topology-control.md ├── configuration.md ├── contributions.md ├── deployment-raft.md ├── deployment-shared-backend.md ├── deployment.md ├── developers.md ├── docker.md ├── download.md ├── executing-via-command-line.md ├── execution.md ├── failure-detection.md ├── faq.md ├── first-steps.md ├── gotchas.md ├── high-availability.md ├── images │ ├── orchestator-cm-co-masters.png │ ├── orchestator-cm-simple-drag-master.png │ ├── orchestrator-about.png │ ├── orchestrator-audit-small.png │ ├── orchestrator-deployment-raft.png │ ├── orchestrator-deployment-shared-backend.png │ ├── orchestrator-deployment.png │ ├── orchestrator-discover.png │ ├── orchestrator-ha--no-ha.png │ ├── orchestrator-ha--raft-proxy.png │ ├── orchestrator-ha--raft.png │ ├── orchestrator-ha--semi-ha.png │ ├── orchestrator-ha--shared-backend.png │ ├── orchestrator-ha-raft-vs-sync-repl.png │ ├── orchestrator-instance-modal.png │ ├── orchestrator-introduction-screenshot.png │ ├── orchestrator-logo-wide.png │ ├── orchestrator-problems.png │ ├── orchestrator-pseudo-gtid-dead-relay-master-begin-drag.png │ ├── orchestrator-pseudo-gtid-dead-relay-master-drop.png │ ├── orchestrator-pseudo-gtid-dead-relay-master-refactored-1.png │ ├── orchestrator-pseudo-gtid-dead-relay-master.png │ ├── orchestrator-pseudo-gtid-relocate-demo.gif │ ├── orchestrator-raft-3dc-dc2.png │ ├── orchestrator-raft-3dc-quorum.png │ ├── orchestrator-raft-3dc-recovery.png │ ├── orchestrator-raft-3dc.png │ ├── orchestrator-simple-drag-hover.png │ ├── orchestrator-simple-drag.png │ ├── orchestrator-simple-dropped.png │ ├── orchestrator-simple-topology.png │ ├── orchestrator-simple-with-problems.png │ ├── orchestrator-simple.png │ └── orchestrator-topology-8-screenshot.png ├── install.md ├── kv.md ├── license.md ├── orchestrator-client.md ├── presentations.md ├── pseudo-gtid-manual-injection.md ├── pseudo-gtid.md ├── raft-vs-sync-repl.md ├── raft.md ├── requirements.md ├── risks.md ├── script-samples.md ├── security.md ├── ssl-and-tls.md ├── status-checks.md ├── supported-topologies-and-versions.md ├── tags.md ├── toc.md ├── topology-recovery.md ├── users.md ├── using-the-web-api.md └── using-the-web-interface.md ├── etc ├── init.d │ └── orchestrator.bash └── systemd │ └── orchestrator.service ├── go.mod ├── go.sum ├── go ├── agent │ ├── agent.go │ ├── agent_dao.go │ └── instance_topology_agent.go ├── app │ ├── cli.go │ ├── cli_test.go │ ├── command_help.go │ └── http.go ├── attributes │ ├── attributes.go │ └── attributes_dao.go ├── cmd │ └── orchestrator │ │ └── main.go ├── collection │ ├── collection.go │ └── collection_test.go ├── config │ ├── cli_flags.go │ ├── config.go │ └── config_test.go ├── db │ ├── db.go │ ├── db_test.go │ ├── generate_base.go │ ├── generate_patches.go │ └── tls.go ├── discovery │ ├── aggregated.go │ ├── funcs.go │ ├── metric.go │ ├── metric_json.go │ ├── queue.go │ └── queue_aggregated_stats.go ├── http │ ├── agents_api.go │ ├── api.go │ ├── api_test.go │ ├── httpbase.go │ ├── raft_reverse_proxy.go │ └── web.go ├── inst │ ├── analysis.go │ ├── analysis_dao.go │ ├── analysis_test.go │ ├── audit.go │ ├── audit_dao.go │ ├── binlog.go │ ├── binlog_test.go │ ├── candidate_database_instance.go │ ├── candidate_database_instance_dao.go │ ├── cluster.go │ ├── cluster_alias.go │ ├── cluster_alias_dao.go │ ├── cluster_domain_dao.go │ ├── cluster_test.go │ ├── downtime.go │ ├── downtime_dao.go │ ├── instance.go │ ├── instance_binlog.go │ ├── instance_binlog_dao.go │ ├── instance_dao.go │ ├── instance_dao_test.go │ ├── instance_key.go │ ├── instance_key_map.go │ ├── instance_key_map_test.go │ ├── instance_key_test.go │ ├── instance_test.go │ ├── instance_topology.go │ ├── instance_topology_dao.go │ ├── instance_topology_dao_test.go │ ├── instance_topology_test.go │ ├── instance_utils.go │ ├── instance_utils_test.go │ ├── maintenance.go │ ├── maintenance_dao.go │ ├── master_equivalence.go │ ├── master_equivalence_dao.go │ ├── minimal_instance.go │ ├── oracle_gtid_set.go │ ├── oracle_gtid_set_entry.go │ ├── oracle_gtid_set_test.go │ ├── pool.go │ ├── pool_dao.go │ ├── postponed_functions.go │ ├── process.go │ ├── promotion_rule.go │ ├── replication_thread_state.go │ ├── resolve.go │ ├── resolve_dao.go │ ├── tag.go │ ├── tag_dao.go │ ├── tag_test.go │ └── write_buffer.go ├── kv │ ├── consul.go │ ├── consul_test.go │ ├── consul_txn.go │ ├── consul_txn_test.go │ ├── internal.go │ ├── kv.go │ └── zk.go ├── logic │ ├── command_applier.go │ ├── disable_recovery.go │ ├── orchestrator.go │ ├── snapshot_data.go │ ├── topology_recovery.go │ └── topology_recovery_dao.go ├── metrics │ ├── graphite.go │ ├── metrics.go │ └── query │ │ ├── aggregated.go │ │ └── metric.go ├── os │ ├── process.go │ ├── process_test.go │ ├── unixcheck.go │ └── unixcheck_test.go ├── process │ ├── access_token_dao.go │ ├── election_dao.go │ ├── health.go │ ├── health_dao.go │ └── host.go ├── raft │ ├── applier.go │ ├── file_snapshot.go │ ├── fsm.go │ ├── fsm_snapshot.go │ ├── http_client.go │ ├── raft.go │ ├── rel_store.go │ ├── snapshot.go │ └── store.go ├── ssl │ ├── ssl.go │ └── ssl_test.go └── util │ ├── log_cache.go │ ├── token.go │ └── token_test.go ├── resources ├── bin │ └── orchestrator-client ├── metrics │ └── orchestrator-grafana.json ├── pseudo-gtid │ ├── bin │ │ └── pseudo-gtid │ ├── pseudo-gtid.sql │ └── puppet │ │ ├── files │ │ └── etc │ │ │ └── init.d │ │ │ └── pseudo-gtid │ │ └── pseudo-gtid ├── public │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── css │ │ ├── custom.css │ │ └── orchestrator.css │ ├── images │ │ ├── ajax-loader.gif │ │ ├── booking-logo-32.png │ │ ├── booking-logo-s.png │ │ ├── keep-calm-and-let-orchestrator-handle-it-transp-m.png │ │ ├── octocat-logo-32.png │ │ ├── orchestrator-logo-32-dark.png │ │ ├── orchestrator-logo-32.png │ │ ├── outbrain-logo-32.png │ │ ├── outbrain-logo-s.png │ │ └── tile.png │ └── js │ │ ├── agent.js │ │ ├── agents.js │ │ ├── audit-failure-detection.js │ │ ├── audit-recovery-shared.js │ │ ├── audit-recovery.js │ │ ├── audit.js │ │ ├── bootbox.min.js │ │ ├── cluster-analysis-shared.js │ │ ├── cluster-pools.js │ │ ├── cluster-tree.js │ │ ├── cluster.js │ │ ├── clusters-analysis.js │ │ ├── clusters.js │ │ ├── common.js │ │ ├── corex-jquery.js │ │ ├── corex.js │ │ ├── custom.js │ │ ├── d3.v3.min.js │ │ ├── discover.js │ │ ├── instance-problems.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.cookie-1.4.1.min.js │ │ ├── jquery.min.js │ │ ├── md5.js │ │ ├── orchestrator.js │ │ ├── search.js │ │ ├── seed-shared.js │ │ ├── seed.js │ │ ├── seeds.js │ │ └── status.js └── templates │ ├── about.tmpl │ ├── agent.tmpl │ ├── agent_seed_details.tmpl │ ├── agents.tmpl │ ├── audit.tmpl │ ├── audit_failure_detection.tmpl │ ├── audit_recovery.tmpl │ ├── cluster.tmpl │ ├── cluster_pools.tmpl │ ├── clusters.tmpl │ ├── clusters_analysis.tmpl │ ├── discover.tmpl │ ├── faq.tmpl │ ├── home.tmpl │ ├── keep-calm.tmpl │ ├── layout.tmpl │ ├── search.tmpl │ ├── seeds.tmpl │ └── status.tmpl ├── script ├── bootstrap ├── build ├── dock ├── ensure-go-installed ├── go ├── packagecloud-prune.sh ├── packagecloud-push.rb ├── test-all ├── test-build ├── test-docs ├── test-integration ├── test-source ├── test-system └── test-unit ├── tests ├── integration │ ├── analysis-all-intermediate-master-replicas-not-replicating │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-all-master-replicas-not-replicating-or-dead │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-all-master-replicas-not-replicating │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-dead-intermediate-master-and-replicas │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-dead-intermediate-master-with-single-replica-failing-to-connect │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-dead-intermediate-master-with-single-replica │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-dead-master-and-some-replicas │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-dead-master-partial-success │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-dead-master │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-errant-gtid-downtimed │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-errant-gtid │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-first-tier-replica-failing-to-connect │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-major-versions │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-no-failover-support │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-no-failure │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-no-logging-replicas │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-no-problem-downtime │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-no-writeable-master │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-row-statement │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-semi-sync-locked-master-hypothesis │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-semi-sync-locked-master │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-semi-sync-no-valid-replicas │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-semi-sync-not-enough-valid-replicas-invalid │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-semi-sync-not-enough-valid-replicas │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-semi-sync-ok │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-unreachable-intermediate-master-partial-success │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-unreachable-intermediate-master-with-lagging-replicas │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-unreachable-intermediate-master │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-unreachable-master-not-lagging-replicas │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-unreachable-master-partial-success-broken-replica │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-unreachable-master-partial-success │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-unreachable-master-with-delayed-replicas │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-unreachable-master-with-lagging-replicas-and-delayed-replicas │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-unreachable-master-with-lagging-replicas │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── analysis-unreachable-master │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── begin-maintenance │ │ ├── expect_output │ │ └── extra_args │ ├── can-replicate-from-higher-version │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── can-replicate-from-sql-delay │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── can-replicate-from-trivial │ │ ├── expect_output │ │ └── extra_args │ ├── clusters-alias │ │ ├── expect_output │ │ └── extra_args │ ├── clusters │ │ ├── expect_output │ │ └── extra_args │ ├── create-per-test.sql │ ├── get-candidate-replica │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── get-cluster-heuristic-lag │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── in-maintenance │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── instance-status │ │ ├── expect_output │ │ └── extra_args │ ├── is-replicating-00 │ │ ├── expect_output │ │ └── extra_args │ ├── is-replicating-01 │ │ ├── expect_output │ │ └── extra_args │ ├── is-replicating-02 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── is-replication-stopped-00 │ │ ├── expect_output │ │ └── extra_args │ ├── is-replication-stopped-01 │ │ ├── expect_output │ │ └── extra_args │ ├── is-replication-stopped-02 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── is-replication-stopped-03 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── not-in-maintenance │ │ ├── expect_output │ │ └── extra_args │ ├── orchestrator.conf.json │ ├── search │ │ ├── expect_output │ │ └── extra_args │ ├── suggest-promoted-replacement-candidate-different-dc │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── suggest-promoted-replacement-candidate-same-dc │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── suggest-promoted-replacement-different-dc │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── suggest-promoted-replacement-ignore-no-binlog │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── suggest-promoted-replacement-is-candidate │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── suggest-promoted-replacement-multiple-candidates-2 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── suggest-promoted-replacement-multiple-candidates │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── suggest-promoted-replacement-prefer-not-2 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── suggest-promoted-replacement-prefer-not │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── suggest-promoted-replacement-trivial │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tag-00 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tag-01 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tag-value-00 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tag-value-01 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tag-value-02 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tagged-00 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tagged-01 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tagged-02 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tagged-03 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tagged-04 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tagged-05 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tagged-06 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tagged-07 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tagged-08 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tagged-09 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tags-00 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── tags-01 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── test.sh │ ├── topology-tabulated │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── topology-tags │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── topology │ │ ├── expect_output │ │ └── extra_args │ ├── untag-00 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── untag-01 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── untag-02 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── untag-03 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── untag-04 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── untag-all-00 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── untag-all-01 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── untag-all-02 │ │ ├── create.sql │ │ ├── expect_failure │ │ └── extra_args │ ├── untag-all-03 │ │ ├── create.sql │ │ ├── expect_output │ │ └── extra_args │ ├── which-cluster-instances │ │ ├── expect_output │ │ └── extra_args │ ├── which-cluster-master │ │ ├── expect_output │ │ └── extra_args │ ├── which-master │ │ ├── expect_output │ │ └── extra_args │ └── which-replicas │ │ ├── expect_output │ │ └── extra_args └── system │ ├── all-instances │ ├── 01-instances │ │ ├── expect_output │ │ └── run │ ├── 02-replicas │ │ ├── expect_output │ │ └── run │ ├── skip_run │ └── teardown │ ├── analysis-locked-semi-sync-master │ ├── 01-analysis-locked-hypothesis │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 02-analysis-locked │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── depends-on │ ├── skip_run │ └── teardown │ ├── check_restore │ ├── co-master-failover │ ├── 01-make-co-master │ │ ├── config.json │ │ ├── expect_output │ │ └── run │ ├── 02-relocate │ │ ├── expect_output │ │ └── run │ ├── 03-failover │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 04-read-only │ │ ├── expect_output │ │ └── run │ ├── 05-count-replicas │ │ ├── expect_output │ │ └── run │ ├── 06-downtimed │ │ ├── expect_output │ │ └── run │ ├── 07-analysis │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown_redeploy │ ├── debug_dump │ ├── deploy-replication │ ├── expect_restore │ ├── graceful-master-takeover-auto │ ├── 01-takeover │ │ ├── expect_output │ │ └── run │ ├── 02-is-replicating │ │ ├── expect_output │ │ └── run │ ├── 03-topology │ │ ├── expect_output │ │ └── run │ ├── 04-takeover │ │ ├── expect_output │ │ └── run │ ├── 05-is-replicating │ │ ├── expect_output │ │ └── run │ ├── 06-topology │ │ ├── expect_output │ │ └── run │ ├── 07-takeover │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 08-is-replicating │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown │ ├── graceful-master-takeover-fail-cross-region │ ├── depends-on │ ├── expect_failure │ ├── run │ └── teardown │ ├── graceful-master-takeover-fail-no-target │ ├── depends-on │ ├── expect_failure │ └── run │ ├── graceful-master-takeover-fail-non-direct-replica │ ├── 01-non-existing │ │ ├── expect_failure │ │ └── run │ ├── 02-non-direct │ │ ├── expect_failure │ │ ├── run │ │ ├── setup │ │ └── teardown │ ├── depends-on │ └── skip_run │ ├── graceful-master-takeover │ ├── 01-takeover │ │ ├── expect_output │ │ └── run │ ├── 02-is-replicating │ │ ├── expect_output │ │ └── run │ ├── 03-start-replica │ │ ├── expect_output │ │ └── run │ ├── 04-is-replicating │ │ ├── expect_output │ │ └── run │ ├── 05-topology │ │ ├── expect_output │ │ └── run │ ├── 06-takeover │ │ ├── expect_output │ │ └── run │ ├── 07-start-replica │ │ ├── expect_output │ │ └── run │ ├── 08-is-replicating │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown │ ├── gtid-errant │ ├── 01-no-errant │ │ ├── expect_output │ │ └── run │ ├── 02-inject-errant │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 03-reset-master │ │ ├── expect_output │ │ └── run │ ├── 04-no-errant │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 05-inject-errant │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 06-relocate-nested-replica │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 07-inject-empty │ │ ├── expect_output │ │ └── run │ ├── 08-no-errant │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── depends-on │ ├── skip_run │ └── teardown │ ├── gtid-no-errant │ ├── 01-no-errant │ │ ├── expect_output │ │ └── run │ ├── 02-reset-master │ │ ├── expect_failure │ │ └── run │ ├── 03-inject-empty │ │ ├── expect_failure │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown │ ├── intermediate-master-failover │ ├── 01-relocate │ │ ├── expect_output │ │ └── run │ ├── 02-failover │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 03-failover │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── depends-on │ ├── skip_run │ └── teardown_redeploy │ ├── make-co-master │ ├── 01-make-co-master │ │ ├── expect_output │ │ └── run │ ├── 02-is-co-master │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 03-topology │ │ ├── expect_output │ │ └── run │ ├── 04-fail-make-co-master │ │ ├── expect_failure │ │ └── run │ ├── 05-relocate │ │ ├── expect_output │ │ └── run │ ├── 06-topology │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown │ ├── master-failover-candidate-lag-cross-datacenter │ ├── 01-failover │ │ ├── config.json │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 02-read-only │ │ ├── expect_output │ │ └── run │ ├── 03-downtimed │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown_redeploy │ ├── master-failover-candidate-lag-cross-region │ ├── 01-failover │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 02-read-only │ │ ├── expect_output │ │ └── run │ ├── 03-downtimed │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown_redeploy │ ├── master-failover-candidate-lag │ ├── 01-failover │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 02-read-only │ │ ├── expect_output │ │ └── run │ ├── 03-count-replicas │ │ ├── expect_output │ │ └── run │ ├── 04-downtimed │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown_redeploy │ ├── master-failover-candidate │ ├── 01-failover │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 02-read-only │ │ ├── expect_output │ │ └── run │ ├── 03-count-replicas │ │ ├── expect_output │ │ └── run │ ├── 04-downtimed │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown_redeploy │ ├── master-failover-fail-promotion-lag-minutes-failure │ ├── 01-failover │ │ ├── config.json │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 02-read-only │ │ ├── expect_output │ │ └── run │ ├── 03-downtimed │ │ ├── expect_output │ │ └── run │ ├── 04-promoted-replica │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown_redeploy │ ├── master-failover-fail-promotion-lag-minutes-success │ ├── 01-failover │ │ ├── config.json │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 02-read-only │ │ ├── expect_output │ │ └── run │ ├── 03-count-replicas │ │ ├── expect_output │ │ └── run │ ├── 04-downtimed │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown_redeploy │ ├── master-failover-lost-replicas │ ├── 01-failover │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 02-read-only │ │ ├── expect_output │ │ └── run │ ├── 03-count-replicas │ │ ├── expect_output │ │ └── run │ ├── 04-downtimed │ │ ├── expect_output │ │ └── run │ ├── 05-which-master │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown_redeploy │ ├── master-failover │ ├── 01-failover │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 02-read-only │ │ ├── expect_output │ │ └── run │ ├── 03-count-replicas │ │ ├── expect_output │ │ └── run │ ├── 04-downtimed │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown_redeploy │ ├── orchestrator-ci-system.conf.json │ ├── recover-read-only-master │ ├── 01-recover │ │ ├── config.json │ │ ├── expect_output │ │ ├── run │ │ └── setup │ ├── 02-read-only │ │ ├── expect_output │ │ └── run │ ├── 03-count-replicas │ │ ├── expect_output │ │ └── run │ ├── 04-downtimed │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown_redeploy │ ├── relocate-multiple │ ├── 01-relocate │ │ ├── expect_output │ │ └── run │ ├── 02-relocate │ │ ├── expect_output │ │ └── run │ ├── 03-relocate │ │ ├── expect_output │ │ └── run │ ├── 04-topology │ │ ├── expect_output │ │ └── run │ ├── depends-on │ ├── skip_run │ └── teardown │ ├── relocate-replicas │ ├── depends-on │ ├── expect_output │ ├── run │ └── teardown │ ├── relocate-single │ ├── depends-on │ ├── expect_output │ ├── run │ └── teardown │ ├── setup │ ├── teardown │ ├── test-refresh-connections │ ├── test-retry │ └── test.sh ├── vagrant ├── README.md ├── admin-build.sh ├── base-build.sh ├── db1-build.sh ├── db1-my.cnf ├── db2-build.sh ├── db2-my.cnf ├── db3-build.sh ├── db3-my.cnf ├── db4-build.sh └── db4-my.cnf └── vendor ├── github.com ├── armon │ ├── consul-api │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── acl.go │ │ ├── agent.go │ │ ├── api.go │ │ ├── catalog.go │ │ ├── event.go │ │ ├── health.go │ │ ├── kv.go │ │ ├── session.go │ │ └── status.go │ └── go-metrics │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── const_unix.go │ │ ├── const_windows.go │ │ ├── inmem.go │ │ ├── inmem_endpoint.go │ │ ├── inmem_signal.go │ │ ├── metrics.go │ │ ├── sink.go │ │ ├── start.go │ │ ├── statsd.go │ │ └── statsite.go ├── codegangsta │ └── inject │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inject.go │ │ └── update_readme.sh ├── cyberdelia │ └── go-metrics-graphite │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ └── graphite.go ├── fatih │ └── color │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ ├── doc.go │ │ ├── go.mod │ │ └── go.sum ├── go-martini │ └── martini │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── env.go │ │ ├── go_version.go │ │ ├── logger.go │ │ ├── martini.go │ │ ├── recovery.go │ │ ├── response_writer.go │ │ ├── return_handler.go │ │ ├── router.go │ │ ├── static.go │ │ └── wercker.yml ├── go-sql-driver │ └── mysql │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auth.go │ │ ├── buffer.go │ │ ├── collations.go │ │ ├── conncheck.go │ │ ├── conncheck_dummy.go │ │ ├── connection.go │ │ ├── connector.go │ │ ├── const.go │ │ ├── driver.go │ │ ├── dsn.go │ │ ├── errors.go │ │ ├── fields.go │ │ ├── fuzz.go │ │ ├── go.mod │ │ ├── infile.go │ │ ├── nulltime.go │ │ ├── nulltime_go113.go │ │ ├── nulltime_legacy.go │ │ ├── packets.go │ │ ├── result.go │ │ ├── rows.go │ │ ├── statement.go │ │ ├── transaction.go │ │ └── utils.go ├── hashicorp │ ├── consul │ │ └── api │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── acl.go │ │ │ ├── agent.go │ │ │ ├── api.go │ │ │ ├── catalog.go │ │ │ ├── config_entry.go │ │ │ ├── config_entry_discoverychain.go │ │ │ ├── config_entry_gateways.go │ │ │ ├── connect.go │ │ │ ├── connect_ca.go │ │ │ ├── connect_intention.go │ │ │ ├── coordinate.go │ │ │ ├── debug.go │ │ │ ├── discovery_chain.go │ │ │ ├── event.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── health.go │ │ │ ├── kv.go │ │ │ ├── lock.go │ │ │ ├── namespace.go │ │ │ ├── operator.go │ │ │ ├── operator_area.go │ │ │ ├── operator_autopilot.go │ │ │ ├── operator_keyring.go │ │ │ ├── operator_license.go │ │ │ ├── operator_raft.go │ │ │ ├── operator_segment.go │ │ │ ├── prepared_query.go │ │ │ ├── raw.go │ │ │ ├── semaphore.go │ │ │ ├── session.go │ │ │ ├── snapshot.go │ │ │ ├── status.go │ │ │ └── txn.go │ ├── go-cleanhttp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cleanhttp.go │ │ ├── doc.go │ │ ├── go.mod │ │ └── handlers.go │ ├── go-hclog │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorize_unix.go │ │ ├── colorize_windows.go │ │ ├── context.go │ │ ├── exclude.go │ │ ├── global.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── interceptlogger.go │ │ ├── intlogger.go │ │ ├── logger.go │ │ ├── nulllogger.go │ │ ├── stacktrace.go │ │ ├── stdlog.go │ │ └── writer.go │ ├── go-immutable-radix │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── edges.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── iradix.go │ │ ├── iter.go │ │ ├── node.go │ │ ├── raw_iter.go │ │ └── reverse_iter.go │ ├── go-msgpack │ │ ├── LICENSE │ │ └── codec │ │ │ ├── 0doc.go │ │ │ ├── README.md │ │ │ ├── binc.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── helper.go │ │ │ ├── helper_internal.go │ │ │ ├── msgpack.go │ │ │ ├── msgpack_test.py │ │ │ ├── rpc.go │ │ │ ├── simple.go │ │ │ └── time.go │ ├── go-rootcerts │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── rootcerts.go │ │ ├── rootcerts_base.go │ │ └── rootcerts_darwin.go │ ├── golang-lru │ │ ├── LICENSE │ │ └── simplelru │ │ │ ├── lru.go │ │ │ └── lru_interface.go │ ├── raft │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── commands.go │ │ ├── config.go │ │ ├── discard_snapshot.go │ │ ├── file_snapshot.go │ │ ├── fsm.go │ │ ├── future.go │ │ ├── inflight.go │ │ ├── inmem_store.go │ │ ├── inmem_transport.go │ │ ├── log.go │ │ ├── log_cache.go │ │ ├── net_transport.go │ │ ├── observer.go │ │ ├── peer.go │ │ ├── raft.go │ │ ├── replication.go │ │ ├── snapshot.go │ │ ├── stable.go │ │ ├── state.go │ │ ├── tcp_transport.go │ │ ├── transport.go │ │ └── util.go │ └── serf │ │ ├── LICENSE │ │ └── coordinate │ │ ├── client.go │ │ ├── config.go │ │ ├── coordinate.go │ │ └── phantom.go ├── howeyc │ └── gopass │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── OPENSOLARIS.LICENSE │ │ ├── README.md │ │ ├── pass.go │ │ ├── terminal.go │ │ └── terminal_solaris.go ├── martini-contrib │ ├── auth │ │ ├── LICENSE │ │ ├── README.md │ │ ├── basic.go │ │ ├── util.go │ │ └── wercker.yml │ ├── gzip │ │ ├── LICENSE │ │ ├── README.md │ │ ├── gzip.go │ │ └── wercker.yml │ └── render │ │ ├── LICENSE │ │ ├── README.md │ │ ├── render.go │ │ └── wercker.yml ├── mattn │ ├── go-colorable │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_appengine.go │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── go.test.sh │ │ └── noncolorable.go │ ├── go-isatty │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── go.test.sh │ │ ├── isatty_bsd.go │ │ ├── isatty_others.go │ │ ├── isatty_plan9.go │ │ ├── isatty_solaris.go │ │ ├── isatty_tcgets.go │ │ └── isatty_windows.go │ └── go-sqlite3 │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backup.go │ │ ├── callback.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── sqlite3-binding.c │ │ ├── sqlite3-binding.h │ │ ├── sqlite3.go │ │ ├── sqlite3_context.go │ │ ├── sqlite3_func_crypt.go │ │ ├── sqlite3_go18.go │ │ ├── sqlite3_libsqlite3.go │ │ ├── sqlite3_load_extension.go │ │ ├── sqlite3_load_extension_omit.go │ │ ├── sqlite3_opt_allow_uri_authority.go │ │ ├── sqlite3_opt_app_armor.go │ │ ├── sqlite3_opt_column_metadata.go │ │ ├── sqlite3_opt_foreign_keys.go │ │ ├── sqlite3_opt_fts5.go │ │ ├── sqlite3_opt_icu.go │ │ ├── sqlite3_opt_introspect.go │ │ ├── sqlite3_opt_json1.go │ │ ├── sqlite3_opt_preupdate.go │ │ ├── sqlite3_opt_preupdate_hook.go │ │ ├── sqlite3_opt_preupdate_omit.go │ │ ├── sqlite3_opt_secure_delete.go │ │ ├── sqlite3_opt_secure_delete_fast.go │ │ ├── sqlite3_opt_stat4.go │ │ ├── sqlite3_opt_unlock_notify.c │ │ ├── sqlite3_opt_unlock_notify.go │ │ ├── sqlite3_opt_userauth.go │ │ ├── sqlite3_opt_userauth_omit.go │ │ ├── sqlite3_opt_vacuum_full.go │ │ ├── sqlite3_opt_vacuum_incr.go │ │ ├── sqlite3_opt_vtable.go │ │ ├── sqlite3_other.go │ │ ├── sqlite3_solaris.go │ │ ├── sqlite3_trace.go │ │ ├── sqlite3_type.go │ │ ├── sqlite3_usleep_windows.go │ │ ├── sqlite3_windows.go │ │ ├── sqlite3ext.h │ │ └── static_mock.go ├── mitchellh │ ├── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ └── homedir.go │ └── mapstructure │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ ├── go.mod │ │ └── mapstructure.go ├── montanaflynn │ └── stats │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── correlation.go │ │ ├── data.go │ │ ├── deviation.go │ │ ├── errors.go │ │ ├── legacy.go │ │ ├── load.go │ │ ├── max.go │ │ ├── mean.go │ │ ├── median.go │ │ ├── min.go │ │ ├── mode.go │ │ ├── outlier.go │ │ ├── percentile.go │ │ ├── quartile.go │ │ ├── regression.go │ │ ├── round.go │ │ ├── sample.go │ │ ├── sum.go │ │ ├── util.go │ │ └── variance.go ├── openark │ └── golib │ │ ├── log │ │ └── log.go │ │ ├── math │ │ └── math.go │ │ ├── sqlutils │ │ ├── dialect.go │ │ ├── sqlite_dialect.go │ │ └── sqlutils.go │ │ ├── tests │ │ └── spec.go │ │ └── util │ │ └── text.go ├── outbrain │ ├── golib │ │ ├── LICENSE │ │ └── log │ │ │ └── log.go │ └── zookeepercli │ │ ├── LICENSE │ │ └── go │ │ └── zk │ │ └── zk.go ├── oxtoacart │ └── bpool │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bpool.go │ │ ├── bufferpool.go │ │ ├── bytepool.go │ │ ├── byteslice.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── sizedbufferpool.go ├── patrickmn │ └── go-cache │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cache.go │ │ └── sharded.go ├── rcrowley │ └── go-metrics │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── counter.go │ │ ├── debug.go │ │ ├── ewma.go │ │ ├── exp │ │ └── exp.go │ │ ├── gauge.go │ │ ├── gauge_float64.go │ │ ├── graphite.go │ │ ├── healthcheck.go │ │ ├── histogram.go │ │ ├── json.go │ │ ├── log.go │ │ ├── memory.md │ │ ├── meter.go │ │ ├── metrics.go │ │ ├── opentsdb.go │ │ ├── registry.go │ │ ├── runtime.go │ │ ├── runtime_cgo.go │ │ ├── runtime_gccpufraction.go │ │ ├── runtime_no_cgo.go │ │ ├── runtime_no_gccpufraction.go │ │ ├── sample.go │ │ ├── syslog.go │ │ ├── timer.go │ │ ├── validate.sh │ │ └── writer.go ├── samuel │ └── go-zookeeper │ │ ├── LICENSE │ │ └── zk │ │ ├── conn.go │ │ ├── constants.go │ │ ├── dnshostprovider.go │ │ ├── flw.go │ │ ├── lock.go │ │ ├── structs.go │ │ └── util.go └── sjmudd │ └── stopwatch │ ├── LICENSE │ ├── README.md │ ├── named_stopwatch.go │ └── stopwatch.go ├── golang.org └── x │ ├── crypto │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── ssh │ │ └── terminal │ │ ├── terminal.go │ │ ├── util.go │ │ ├── util_aix.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_plan9.go │ │ ├── util_solaris.go │ │ └── util_windows.go │ └── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── internal │ └── unsafeheader │ │ └── unsafeheader.go │ ├── unix │ ├── .gitignore │ ├── README.md │ ├── affinity_linux.go │ ├── aliases.go │ ├── asm_aix_ppc64.s │ ├── asm_darwin_386.s │ ├── asm_darwin_amd64.s │ ├── asm_darwin_arm.s │ ├── asm_darwin_arm64.s │ ├── asm_dragonfly_amd64.s │ ├── asm_freebsd_386.s │ ├── asm_freebsd_amd64.s │ ├── asm_freebsd_arm.s │ ├── asm_freebsd_arm64.s │ ├── asm_linux_386.s │ ├── asm_linux_amd64.s │ ├── asm_linux_arm.s │ ├── asm_linux_arm64.s │ ├── asm_linux_mips64x.s │ ├── asm_linux_mipsx.s │ ├── asm_linux_ppc64x.s │ ├── asm_linux_riscv64.s │ ├── asm_linux_s390x.s │ ├── asm_netbsd_386.s │ ├── asm_netbsd_amd64.s │ ├── asm_netbsd_arm.s │ ├── asm_netbsd_arm64.s │ ├── asm_openbsd_386.s │ ├── asm_openbsd_amd64.s │ ├── asm_openbsd_arm.s │ ├── asm_openbsd_arm64.s │ ├── asm_openbsd_mips64.s │ ├── asm_solaris_amd64.s │ ├── bluetooth_linux.go │ ├── cap_freebsd.go │ ├── constants.go │ ├── dev_aix_ppc.go │ ├── dev_aix_ppc64.go │ ├── dev_darwin.go │ ├── dev_dragonfly.go │ ├── dev_freebsd.go │ ├── dev_linux.go │ ├── dev_netbsd.go │ ├── dev_openbsd.go │ ├── dirent.go │ ├── endian_big.go │ ├── endian_little.go │ ├── env_unix.go │ ├── errors_freebsd_386.go │ ├── errors_freebsd_amd64.go │ ├── errors_freebsd_arm.go │ ├── errors_freebsd_arm64.go │ ├── fcntl.go │ ├── fcntl_darwin.go │ ├── fcntl_linux_32bit.go │ ├── fdset.go │ ├── gccgo.go │ ├── gccgo_c.c │ ├── gccgo_linux_amd64.go │ ├── ioctl.go │ ├── mkall.sh │ ├── mkerrors.sh │ ├── pagesize_unix.go │ ├── pledge_openbsd.go │ ├── race.go │ ├── race0.go │ ├── readdirent_getdents.go │ ├── readdirent_getdirentries.go │ ├── sockcmsg_dragonfly.go │ ├── sockcmsg_linux.go │ ├── sockcmsg_unix.go │ ├── sockcmsg_unix_other.go │ ├── str.go │ ├── syscall.go │ ├── syscall_aix.go │ ├── syscall_aix_ppc.go │ ├── syscall_aix_ppc64.go │ ├── syscall_bsd.go │ ├── syscall_darwin.1_12.go │ ├── syscall_darwin.1_13.go │ ├── syscall_darwin.go │ ├── syscall_darwin_386.go │ ├── syscall_darwin_amd64.go │ ├── syscall_darwin_arm.go │ ├── syscall_darwin_arm64.go │ ├── syscall_darwin_libSystem.go │ ├── syscall_dragonfly.go │ ├── syscall_dragonfly_amd64.go │ ├── syscall_freebsd.go │ ├── syscall_freebsd_386.go │ ├── syscall_freebsd_amd64.go │ ├── syscall_freebsd_arm.go │ ├── syscall_freebsd_arm64.go │ ├── syscall_illumos.go │ ├── syscall_linux.go │ ├── syscall_linux_386.go │ ├── syscall_linux_amd64.go │ ├── syscall_linux_amd64_gc.go │ ├── syscall_linux_arm.go │ ├── syscall_linux_arm64.go │ ├── syscall_linux_gc.go │ ├── syscall_linux_gc_386.go │ ├── syscall_linux_gc_arm.go │ ├── syscall_linux_gccgo_386.go │ ├── syscall_linux_gccgo_arm.go │ ├── syscall_linux_mips64x.go │ ├── syscall_linux_mipsx.go │ ├── syscall_linux_ppc64x.go │ ├── syscall_linux_riscv64.go │ ├── syscall_linux_s390x.go │ ├── syscall_linux_sparc64.go │ ├── syscall_netbsd.go │ ├── syscall_netbsd_386.go │ ├── syscall_netbsd_amd64.go │ ├── syscall_netbsd_arm.go │ ├── syscall_netbsd_arm64.go │ ├── syscall_openbsd.go │ ├── syscall_openbsd_386.go │ ├── syscall_openbsd_amd64.go │ ├── syscall_openbsd_arm.go │ ├── syscall_openbsd_arm64.go │ ├── syscall_openbsd_mips64.go │ ├── syscall_solaris.go │ ├── syscall_solaris_amd64.go │ ├── syscall_unix.go │ ├── syscall_unix_gc.go │ ├── syscall_unix_gc_ppc64x.go │ ├── timestruct.go │ ├── unveil_openbsd.go │ ├── xattr_bsd.go │ ├── zerrors_aix_ppc.go │ ├── zerrors_aix_ppc64.go │ ├── zerrors_darwin_386.go │ ├── zerrors_darwin_amd64.go │ ├── zerrors_darwin_arm.go │ ├── zerrors_darwin_arm64.go │ ├── zerrors_dragonfly_amd64.go │ ├── zerrors_freebsd_386.go │ ├── zerrors_freebsd_amd64.go │ ├── zerrors_freebsd_arm.go │ ├── zerrors_freebsd_arm64.go │ ├── zerrors_linux.go │ ├── zerrors_linux_386.go │ ├── zerrors_linux_amd64.go │ ├── zerrors_linux_arm.go │ ├── zerrors_linux_arm64.go │ ├── zerrors_linux_mips.go │ ├── zerrors_linux_mips64.go │ ├── zerrors_linux_mips64le.go │ ├── zerrors_linux_mipsle.go │ ├── zerrors_linux_ppc64.go │ ├── zerrors_linux_ppc64le.go │ ├── zerrors_linux_riscv64.go │ ├── zerrors_linux_s390x.go │ ├── zerrors_linux_sparc64.go │ ├── zerrors_netbsd_386.go │ ├── zerrors_netbsd_amd64.go │ ├── zerrors_netbsd_arm.go │ ├── zerrors_netbsd_arm64.go │ ├── zerrors_openbsd_386.go │ ├── zerrors_openbsd_amd64.go │ ├── zerrors_openbsd_arm.go │ ├── zerrors_openbsd_arm64.go │ ├── zerrors_openbsd_mips64.go │ ├── zerrors_solaris_amd64.go │ ├── zptrace_armnn_linux.go │ ├── zptrace_linux_arm64.go │ ├── zptrace_mipsnn_linux.go │ ├── zptrace_mipsnnle_linux.go │ ├── zptrace_x86_linux.go │ ├── zsyscall_aix_ppc.go │ ├── zsyscall_aix_ppc64.go │ ├── zsyscall_aix_ppc64_gc.go │ ├── zsyscall_aix_ppc64_gccgo.go │ ├── zsyscall_darwin_386.1_13.go │ ├── zsyscall_darwin_386.1_13.s │ ├── zsyscall_darwin_386.go │ ├── zsyscall_darwin_386.s │ ├── zsyscall_darwin_amd64.1_13.go │ ├── zsyscall_darwin_amd64.1_13.s │ ├── zsyscall_darwin_amd64.go │ ├── zsyscall_darwin_amd64.s │ ├── zsyscall_darwin_arm.1_13.go │ ├── zsyscall_darwin_arm.1_13.s │ ├── zsyscall_darwin_arm.go │ ├── zsyscall_darwin_arm.s │ ├── zsyscall_darwin_arm64.1_13.go │ ├── zsyscall_darwin_arm64.1_13.s │ ├── zsyscall_darwin_arm64.go │ ├── zsyscall_darwin_arm64.s │ ├── zsyscall_dragonfly_amd64.go │ ├── zsyscall_freebsd_386.go │ ├── zsyscall_freebsd_amd64.go │ ├── zsyscall_freebsd_arm.go │ ├── zsyscall_freebsd_arm64.go │ ├── zsyscall_illumos_amd64.go │ ├── zsyscall_linux.go │ ├── zsyscall_linux_386.go │ ├── zsyscall_linux_amd64.go │ ├── zsyscall_linux_arm.go │ ├── zsyscall_linux_arm64.go │ ├── zsyscall_linux_mips.go │ ├── zsyscall_linux_mips64.go │ ├── zsyscall_linux_mips64le.go │ ├── zsyscall_linux_mipsle.go │ ├── zsyscall_linux_ppc64.go │ ├── zsyscall_linux_ppc64le.go │ ├── zsyscall_linux_riscv64.go │ ├── zsyscall_linux_s390x.go │ ├── zsyscall_linux_sparc64.go │ ├── zsyscall_netbsd_386.go │ ├── zsyscall_netbsd_amd64.go │ ├── zsyscall_netbsd_arm.go │ ├── zsyscall_netbsd_arm64.go │ ├── zsyscall_openbsd_386.go │ ├── zsyscall_openbsd_amd64.go │ ├── zsyscall_openbsd_arm.go │ ├── zsyscall_openbsd_arm64.go │ ├── zsyscall_openbsd_mips64.go │ ├── zsyscall_solaris_amd64.go │ ├── zsysctl_openbsd_386.go │ ├── zsysctl_openbsd_amd64.go │ ├── zsysctl_openbsd_arm.go │ ├── zsysctl_openbsd_arm64.go │ ├── zsysctl_openbsd_mips64.go │ ├── zsysnum_darwin_386.go │ ├── zsysnum_darwin_amd64.go │ ├── zsysnum_darwin_arm.go │ ├── zsysnum_darwin_arm64.go │ ├── zsysnum_dragonfly_amd64.go │ ├── zsysnum_freebsd_386.go │ ├── zsysnum_freebsd_amd64.go │ ├── zsysnum_freebsd_arm.go │ ├── zsysnum_freebsd_arm64.go │ ├── zsysnum_linux_386.go │ ├── zsysnum_linux_amd64.go │ ├── zsysnum_linux_arm.go │ ├── zsysnum_linux_arm64.go │ ├── zsysnum_linux_mips.go │ ├── zsysnum_linux_mips64.go │ ├── zsysnum_linux_mips64le.go │ ├── zsysnum_linux_mipsle.go │ ├── zsysnum_linux_ppc64.go │ ├── zsysnum_linux_ppc64le.go │ ├── zsysnum_linux_riscv64.go │ ├── zsysnum_linux_s390x.go │ ├── zsysnum_linux_sparc64.go │ ├── zsysnum_netbsd_386.go │ ├── zsysnum_netbsd_amd64.go │ ├── zsysnum_netbsd_arm.go │ ├── zsysnum_netbsd_arm64.go │ ├── zsysnum_openbsd_386.go │ ├── zsysnum_openbsd_amd64.go │ ├── zsysnum_openbsd_arm.go │ ├── zsysnum_openbsd_arm64.go │ ├── zsysnum_openbsd_mips64.go │ ├── ztypes_aix_ppc.go │ ├── ztypes_aix_ppc64.go │ ├── ztypes_darwin_386.go │ ├── ztypes_darwin_amd64.go │ ├── ztypes_darwin_arm.go │ ├── ztypes_darwin_arm64.go │ ├── ztypes_dragonfly_amd64.go │ ├── ztypes_freebsd_386.go │ ├── ztypes_freebsd_amd64.go │ ├── ztypes_freebsd_arm.go │ ├── ztypes_freebsd_arm64.go │ ├── ztypes_linux.go │ ├── ztypes_linux_386.go │ ├── ztypes_linux_amd64.go │ ├── ztypes_linux_arm.go │ ├── ztypes_linux_arm64.go │ ├── ztypes_linux_mips.go │ ├── ztypes_linux_mips64.go │ ├── ztypes_linux_mips64le.go │ ├── ztypes_linux_mipsle.go │ ├── ztypes_linux_ppc64.go │ ├── ztypes_linux_ppc64le.go │ ├── ztypes_linux_riscv64.go │ ├── ztypes_linux_s390x.go │ ├── ztypes_linux_sparc64.go │ ├── ztypes_netbsd_386.go │ ├── ztypes_netbsd_amd64.go │ ├── ztypes_netbsd_arm.go │ ├── ztypes_netbsd_arm64.go │ ├── ztypes_openbsd_386.go │ ├── ztypes_openbsd_amd64.go │ ├── ztypes_openbsd_arm.go │ ├── ztypes_openbsd_arm64.go │ ├── ztypes_openbsd_mips64.go │ └── ztypes_solaris_amd64.go │ └── windows │ ├── aliases.go │ ├── dll_windows.go │ ├── empty.s │ ├── env_windows.go │ ├── eventlog.go │ ├── exec_windows.go │ ├── memory_windows.go │ ├── mkerrors.bash │ ├── mkknownfolderids.bash │ ├── mksyscall.go │ ├── race.go │ ├── race0.go │ ├── security_windows.go │ ├── service.go │ ├── setupapierrors_windows.go │ ├── str.go │ ├── syscall.go │ ├── syscall_windows.go │ ├── types_windows.go │ ├── types_windows_386.go │ ├── types_windows_amd64.go │ ├── types_windows_arm.go │ ├── zerrors_windows.go │ ├── zknownfolderids_windows.go │ └── zsyscall_windows.go ├── gopkg.in ├── gcfg.v1 │ ├── LICENSE │ ├── README │ ├── doc.go │ ├── errors.go │ ├── read.go │ ├── scanner │ │ ├── errors.go │ │ └── scanner.go │ ├── set.go │ ├── token │ │ ├── position.go │ │ ├── serialize.go │ │ └── token.go │ └── types │ │ ├── bool.go │ │ ├── doc.go │ │ ├── enum.go │ │ ├── int.go │ │ └── scan.go └── warnings.v0 │ ├── LICENSE │ ├── README │ └── warnings.go └── modules.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/system.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/.github/workflows/system.yml -------------------------------------------------------------------------------- /.github/workflows/upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/.github/workflows/upgrade.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/.gitignore -------------------------------------------------------------------------------- /.go-version: -------------------------------------------------------------------------------- 1 | 1.5 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_VERSION: -------------------------------------------------------------------------------- 1 | 3.2.6 2 | -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bump_release_version_and_tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/bump_release_version_and_tag -------------------------------------------------------------------------------- /conf/orchestrator-ci-env.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/conf/orchestrator-ci-env.conf.json -------------------------------------------------------------------------------- /conf/orchestrator-ci-upgrade.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/conf/orchestrator-ci-upgrade.conf.json -------------------------------------------------------------------------------- /conf/orchestrator-raft-env.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/conf/orchestrator-raft-env.conf.json -------------------------------------------------------------------------------- /conf/orchestrator-sample-sqlite.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/conf/orchestrator-sample-sqlite.conf.json -------------------------------------------------------------------------------- /conf/orchestrator-sample.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/conf/orchestrator-sample.conf.json -------------------------------------------------------------------------------- /conf/orchestrator-simple.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/conf/orchestrator-simple.conf.json -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docker/Dockerfile.packaging -------------------------------------------------------------------------------- /docker/Dockerfile.raft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docker/Dockerfile.raft -------------------------------------------------------------------------------- /docker/Dockerfile.system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docker/Dockerfile.system -------------------------------------------------------------------------------- /docker/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docker/Dockerfile.test -------------------------------------------------------------------------------- /docker/docker-entry-raft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docker/docker-entry-raft -------------------------------------------------------------------------------- /docker/docker-entry-system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docker/docker-entry-system -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docker/resources/systemctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docker/resources/systemctl.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/agents.md -------------------------------------------------------------------------------- /docs/bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/bugs.md -------------------------------------------------------------------------------- /docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/build.md -------------------------------------------------------------------------------- /docs/ci-env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/ci-env.md -------------------------------------------------------------------------------- /docs/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/ci.md -------------------------------------------------------------------------------- /docs/configuration-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration-backend.md -------------------------------------------------------------------------------- /docs/configuration-discovery-basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration-discovery-basic.md -------------------------------------------------------------------------------- /docs/configuration-discovery-classifying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration-discovery-classifying.md -------------------------------------------------------------------------------- /docs/configuration-discovery-pseudo-gtid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration-discovery-pseudo-gtid.md -------------------------------------------------------------------------------- /docs/configuration-discovery-resolve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration-discovery-resolve.md -------------------------------------------------------------------------------- /docs/configuration-failure-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration-failure-detection.md -------------------------------------------------------------------------------- /docs/configuration-kv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration-kv.md -------------------------------------------------------------------------------- /docs/configuration-large.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration-large.md -------------------------------------------------------------------------------- /docs/configuration-raft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration-raft.md -------------------------------------------------------------------------------- /docs/configuration-recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration-recovery.md -------------------------------------------------------------------------------- /docs/configuration-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration-sample.md -------------------------------------------------------------------------------- /docs/configuration-topology-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration-topology-control.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/contributions.md -------------------------------------------------------------------------------- /docs/deployment-raft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/deployment-raft.md -------------------------------------------------------------------------------- /docs/deployment-shared-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/deployment-shared-backend.md -------------------------------------------------------------------------------- /docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/deployment.md -------------------------------------------------------------------------------- /docs/developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/developers.md -------------------------------------------------------------------------------- /docs/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/docker.md -------------------------------------------------------------------------------- /docs/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/download.md -------------------------------------------------------------------------------- /docs/executing-via-command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/executing-via-command-line.md -------------------------------------------------------------------------------- /docs/execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/execution.md -------------------------------------------------------------------------------- /docs/failure-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/failure-detection.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/first-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/first-steps.md -------------------------------------------------------------------------------- /docs/gotchas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/gotchas.md -------------------------------------------------------------------------------- /docs/high-availability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/high-availability.md -------------------------------------------------------------------------------- /docs/images/orchestator-cm-co-masters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestator-cm-co-masters.png -------------------------------------------------------------------------------- /docs/images/orchestrator-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-about.png -------------------------------------------------------------------------------- /docs/images/orchestrator-audit-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-audit-small.png -------------------------------------------------------------------------------- /docs/images/orchestrator-deployment-raft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-deployment-raft.png -------------------------------------------------------------------------------- /docs/images/orchestrator-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-deployment.png -------------------------------------------------------------------------------- /docs/images/orchestrator-discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-discover.png -------------------------------------------------------------------------------- /docs/images/orchestrator-ha--no-ha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-ha--no-ha.png -------------------------------------------------------------------------------- /docs/images/orchestrator-ha--raft-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-ha--raft-proxy.png -------------------------------------------------------------------------------- /docs/images/orchestrator-ha--raft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-ha--raft.png -------------------------------------------------------------------------------- /docs/images/orchestrator-ha--semi-ha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-ha--semi-ha.png -------------------------------------------------------------------------------- /docs/images/orchestrator-instance-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-instance-modal.png -------------------------------------------------------------------------------- /docs/images/orchestrator-logo-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-logo-wide.png -------------------------------------------------------------------------------- /docs/images/orchestrator-problems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-problems.png -------------------------------------------------------------------------------- /docs/images/orchestrator-raft-3dc-dc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-raft-3dc-dc2.png -------------------------------------------------------------------------------- /docs/images/orchestrator-raft-3dc-quorum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-raft-3dc-quorum.png -------------------------------------------------------------------------------- /docs/images/orchestrator-raft-3dc-recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-raft-3dc-recovery.png -------------------------------------------------------------------------------- /docs/images/orchestrator-raft-3dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-raft-3dc.png -------------------------------------------------------------------------------- /docs/images/orchestrator-simple-drag-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-simple-drag-hover.png -------------------------------------------------------------------------------- /docs/images/orchestrator-simple-drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-simple-drag.png -------------------------------------------------------------------------------- /docs/images/orchestrator-simple-dropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-simple-dropped.png -------------------------------------------------------------------------------- /docs/images/orchestrator-simple-topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-simple-topology.png -------------------------------------------------------------------------------- /docs/images/orchestrator-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/images/orchestrator-simple.png -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/kv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/kv.md -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/orchestrator-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/orchestrator-client.md -------------------------------------------------------------------------------- /docs/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/presentations.md -------------------------------------------------------------------------------- /docs/pseudo-gtid-manual-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/pseudo-gtid-manual-injection.md -------------------------------------------------------------------------------- /docs/pseudo-gtid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/pseudo-gtid.md -------------------------------------------------------------------------------- /docs/raft-vs-sync-repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/raft-vs-sync-repl.md -------------------------------------------------------------------------------- /docs/raft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/raft.md -------------------------------------------------------------------------------- /docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/requirements.md -------------------------------------------------------------------------------- /docs/risks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/risks.md -------------------------------------------------------------------------------- /docs/script-samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/script-samples.md -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/security.md -------------------------------------------------------------------------------- /docs/ssl-and-tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/ssl-and-tls.md -------------------------------------------------------------------------------- /docs/status-checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/status-checks.md -------------------------------------------------------------------------------- /docs/supported-topologies-and-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/supported-topologies-and-versions.md -------------------------------------------------------------------------------- /docs/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/tags.md -------------------------------------------------------------------------------- /docs/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/toc.md -------------------------------------------------------------------------------- /docs/topology-recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/topology-recovery.md -------------------------------------------------------------------------------- /docs/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/users.md -------------------------------------------------------------------------------- /docs/using-the-web-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/using-the-web-api.md -------------------------------------------------------------------------------- /docs/using-the-web-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/docs/using-the-web-interface.md -------------------------------------------------------------------------------- /etc/init.d/orchestrator.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/etc/init.d/orchestrator.bash -------------------------------------------------------------------------------- /etc/systemd/orchestrator.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/etc/systemd/orchestrator.service -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go.sum -------------------------------------------------------------------------------- /go/agent/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/agent/agent.go -------------------------------------------------------------------------------- /go/agent/agent_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/agent/agent_dao.go -------------------------------------------------------------------------------- /go/agent/instance_topology_agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/agent/instance_topology_agent.go -------------------------------------------------------------------------------- /go/app/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/app/cli.go -------------------------------------------------------------------------------- /go/app/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/app/cli_test.go -------------------------------------------------------------------------------- /go/app/command_help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/app/command_help.go -------------------------------------------------------------------------------- /go/app/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/app/http.go -------------------------------------------------------------------------------- /go/attributes/attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/attributes/attributes.go -------------------------------------------------------------------------------- /go/attributes/attributes_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/attributes/attributes_dao.go -------------------------------------------------------------------------------- /go/cmd/orchestrator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/cmd/orchestrator/main.go -------------------------------------------------------------------------------- /go/collection/collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/collection/collection.go -------------------------------------------------------------------------------- /go/collection/collection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/collection/collection_test.go -------------------------------------------------------------------------------- /go/config/cli_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/config/cli_flags.go -------------------------------------------------------------------------------- /go/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/config/config.go -------------------------------------------------------------------------------- /go/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/config/config_test.go -------------------------------------------------------------------------------- /go/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/db/db.go -------------------------------------------------------------------------------- /go/db/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/db/db_test.go -------------------------------------------------------------------------------- /go/db/generate_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/db/generate_base.go -------------------------------------------------------------------------------- /go/db/generate_patches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/db/generate_patches.go -------------------------------------------------------------------------------- /go/db/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/db/tls.go -------------------------------------------------------------------------------- /go/discovery/aggregated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/discovery/aggregated.go -------------------------------------------------------------------------------- /go/discovery/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/discovery/funcs.go -------------------------------------------------------------------------------- /go/discovery/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/discovery/metric.go -------------------------------------------------------------------------------- /go/discovery/metric_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/discovery/metric_json.go -------------------------------------------------------------------------------- /go/discovery/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/discovery/queue.go -------------------------------------------------------------------------------- /go/discovery/queue_aggregated_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/discovery/queue_aggregated_stats.go -------------------------------------------------------------------------------- /go/http/agents_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/http/agents_api.go -------------------------------------------------------------------------------- /go/http/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/http/api.go -------------------------------------------------------------------------------- /go/http/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/http/api_test.go -------------------------------------------------------------------------------- /go/http/httpbase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/http/httpbase.go -------------------------------------------------------------------------------- /go/http/raft_reverse_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/http/raft_reverse_proxy.go -------------------------------------------------------------------------------- /go/http/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/http/web.go -------------------------------------------------------------------------------- /go/inst/analysis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/analysis.go -------------------------------------------------------------------------------- /go/inst/analysis_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/analysis_dao.go -------------------------------------------------------------------------------- /go/inst/analysis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/analysis_test.go -------------------------------------------------------------------------------- /go/inst/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/audit.go -------------------------------------------------------------------------------- /go/inst/audit_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/audit_dao.go -------------------------------------------------------------------------------- /go/inst/binlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/binlog.go -------------------------------------------------------------------------------- /go/inst/binlog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/binlog_test.go -------------------------------------------------------------------------------- /go/inst/candidate_database_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/candidate_database_instance.go -------------------------------------------------------------------------------- /go/inst/candidate_database_instance_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/candidate_database_instance_dao.go -------------------------------------------------------------------------------- /go/inst/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/cluster.go -------------------------------------------------------------------------------- /go/inst/cluster_alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/cluster_alias.go -------------------------------------------------------------------------------- /go/inst/cluster_alias_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/cluster_alias_dao.go -------------------------------------------------------------------------------- /go/inst/cluster_domain_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/cluster_domain_dao.go -------------------------------------------------------------------------------- /go/inst/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/cluster_test.go -------------------------------------------------------------------------------- /go/inst/downtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/downtime.go -------------------------------------------------------------------------------- /go/inst/downtime_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/downtime_dao.go -------------------------------------------------------------------------------- /go/inst/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance.go -------------------------------------------------------------------------------- /go/inst/instance_binlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_binlog.go -------------------------------------------------------------------------------- /go/inst/instance_binlog_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_binlog_dao.go -------------------------------------------------------------------------------- /go/inst/instance_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_dao.go -------------------------------------------------------------------------------- /go/inst/instance_dao_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_dao_test.go -------------------------------------------------------------------------------- /go/inst/instance_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_key.go -------------------------------------------------------------------------------- /go/inst/instance_key_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_key_map.go -------------------------------------------------------------------------------- /go/inst/instance_key_map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_key_map_test.go -------------------------------------------------------------------------------- /go/inst/instance_key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_key_test.go -------------------------------------------------------------------------------- /go/inst/instance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_test.go -------------------------------------------------------------------------------- /go/inst/instance_topology.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_topology.go -------------------------------------------------------------------------------- /go/inst/instance_topology_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_topology_dao.go -------------------------------------------------------------------------------- /go/inst/instance_topology_dao_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_topology_dao_test.go -------------------------------------------------------------------------------- /go/inst/instance_topology_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_topology_test.go -------------------------------------------------------------------------------- /go/inst/instance_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_utils.go -------------------------------------------------------------------------------- /go/inst/instance_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/instance_utils_test.go -------------------------------------------------------------------------------- /go/inst/maintenance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/maintenance.go -------------------------------------------------------------------------------- /go/inst/maintenance_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/maintenance_dao.go -------------------------------------------------------------------------------- /go/inst/master_equivalence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/master_equivalence.go -------------------------------------------------------------------------------- /go/inst/master_equivalence_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/master_equivalence_dao.go -------------------------------------------------------------------------------- /go/inst/minimal_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/minimal_instance.go -------------------------------------------------------------------------------- /go/inst/oracle_gtid_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/oracle_gtid_set.go -------------------------------------------------------------------------------- /go/inst/oracle_gtid_set_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/oracle_gtid_set_entry.go -------------------------------------------------------------------------------- /go/inst/oracle_gtid_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/oracle_gtid_set_test.go -------------------------------------------------------------------------------- /go/inst/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/pool.go -------------------------------------------------------------------------------- /go/inst/pool_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/pool_dao.go -------------------------------------------------------------------------------- /go/inst/postponed_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/postponed_functions.go -------------------------------------------------------------------------------- /go/inst/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/process.go -------------------------------------------------------------------------------- /go/inst/promotion_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/promotion_rule.go -------------------------------------------------------------------------------- /go/inst/replication_thread_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/replication_thread_state.go -------------------------------------------------------------------------------- /go/inst/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/resolve.go -------------------------------------------------------------------------------- /go/inst/resolve_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/resolve_dao.go -------------------------------------------------------------------------------- /go/inst/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/tag.go -------------------------------------------------------------------------------- /go/inst/tag_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/tag_dao.go -------------------------------------------------------------------------------- /go/inst/tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/tag_test.go -------------------------------------------------------------------------------- /go/inst/write_buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/inst/write_buffer.go -------------------------------------------------------------------------------- /go/kv/consul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/kv/consul.go -------------------------------------------------------------------------------- /go/kv/consul_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/kv/consul_test.go -------------------------------------------------------------------------------- /go/kv/consul_txn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/kv/consul_txn.go -------------------------------------------------------------------------------- /go/kv/consul_txn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/kv/consul_txn_test.go -------------------------------------------------------------------------------- /go/kv/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/kv/internal.go -------------------------------------------------------------------------------- /go/kv/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/kv/kv.go -------------------------------------------------------------------------------- /go/kv/zk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/kv/zk.go -------------------------------------------------------------------------------- /go/logic/command_applier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/logic/command_applier.go -------------------------------------------------------------------------------- /go/logic/disable_recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/logic/disable_recovery.go -------------------------------------------------------------------------------- /go/logic/orchestrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/logic/orchestrator.go -------------------------------------------------------------------------------- /go/logic/snapshot_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/logic/snapshot_data.go -------------------------------------------------------------------------------- /go/logic/topology_recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/logic/topology_recovery.go -------------------------------------------------------------------------------- /go/logic/topology_recovery_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/logic/topology_recovery_dao.go -------------------------------------------------------------------------------- /go/metrics/graphite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/metrics/graphite.go -------------------------------------------------------------------------------- /go/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/metrics/metrics.go -------------------------------------------------------------------------------- /go/metrics/query/aggregated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/metrics/query/aggregated.go -------------------------------------------------------------------------------- /go/metrics/query/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/metrics/query/metric.go -------------------------------------------------------------------------------- /go/os/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/os/process.go -------------------------------------------------------------------------------- /go/os/process_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/os/process_test.go -------------------------------------------------------------------------------- /go/os/unixcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/os/unixcheck.go -------------------------------------------------------------------------------- /go/os/unixcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/os/unixcheck_test.go -------------------------------------------------------------------------------- /go/process/access_token_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/process/access_token_dao.go -------------------------------------------------------------------------------- /go/process/election_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/process/election_dao.go -------------------------------------------------------------------------------- /go/process/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/process/health.go -------------------------------------------------------------------------------- /go/process/health_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/process/health_dao.go -------------------------------------------------------------------------------- /go/process/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/process/host.go -------------------------------------------------------------------------------- /go/raft/applier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/raft/applier.go -------------------------------------------------------------------------------- /go/raft/file_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/raft/file_snapshot.go -------------------------------------------------------------------------------- /go/raft/fsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/raft/fsm.go -------------------------------------------------------------------------------- /go/raft/fsm_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/raft/fsm_snapshot.go -------------------------------------------------------------------------------- /go/raft/http_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/raft/http_client.go -------------------------------------------------------------------------------- /go/raft/raft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/raft/raft.go -------------------------------------------------------------------------------- /go/raft/rel_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/raft/rel_store.go -------------------------------------------------------------------------------- /go/raft/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/raft/snapshot.go -------------------------------------------------------------------------------- /go/raft/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/raft/store.go -------------------------------------------------------------------------------- /go/ssl/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/ssl/ssl.go -------------------------------------------------------------------------------- /go/ssl/ssl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/ssl/ssl_test.go -------------------------------------------------------------------------------- /go/util/log_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/util/log_cache.go -------------------------------------------------------------------------------- /go/util/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/util/token.go -------------------------------------------------------------------------------- /go/util/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/go/util/token_test.go -------------------------------------------------------------------------------- /resources/bin/orchestrator-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/bin/orchestrator-client -------------------------------------------------------------------------------- /resources/metrics/orchestrator-grafana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/metrics/orchestrator-grafana.json -------------------------------------------------------------------------------- /resources/pseudo-gtid/bin/pseudo-gtid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/pseudo-gtid/bin/pseudo-gtid -------------------------------------------------------------------------------- /resources/pseudo-gtid/pseudo-gtid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/pseudo-gtid/pseudo-gtid.sql -------------------------------------------------------------------------------- /resources/pseudo-gtid/puppet/pseudo-gtid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/pseudo-gtid/puppet/pseudo-gtid -------------------------------------------------------------------------------- /resources/public/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /resources/public/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/bootstrap/js/npm.js -------------------------------------------------------------------------------- /resources/public/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/public/css/orchestrator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/css/orchestrator.css -------------------------------------------------------------------------------- /resources/public/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/images/ajax-loader.gif -------------------------------------------------------------------------------- /resources/public/images/booking-logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/images/booking-logo-32.png -------------------------------------------------------------------------------- /resources/public/images/booking-logo-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/images/booking-logo-s.png -------------------------------------------------------------------------------- /resources/public/images/octocat-logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/images/octocat-logo-32.png -------------------------------------------------------------------------------- /resources/public/images/outbrain-logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/images/outbrain-logo-32.png -------------------------------------------------------------------------------- /resources/public/images/outbrain-logo-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/images/outbrain-logo-s.png -------------------------------------------------------------------------------- /resources/public/images/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/images/tile.png -------------------------------------------------------------------------------- /resources/public/js/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/agent.js -------------------------------------------------------------------------------- /resources/public/js/agents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/agents.js -------------------------------------------------------------------------------- /resources/public/js/audit-failure-detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/audit-failure-detection.js -------------------------------------------------------------------------------- /resources/public/js/audit-recovery-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/audit-recovery-shared.js -------------------------------------------------------------------------------- /resources/public/js/audit-recovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/audit-recovery.js -------------------------------------------------------------------------------- /resources/public/js/audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/audit.js -------------------------------------------------------------------------------- /resources/public/js/bootbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/bootbox.min.js -------------------------------------------------------------------------------- /resources/public/js/cluster-analysis-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/cluster-analysis-shared.js -------------------------------------------------------------------------------- /resources/public/js/cluster-pools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/cluster-pools.js -------------------------------------------------------------------------------- /resources/public/js/cluster-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/cluster-tree.js -------------------------------------------------------------------------------- /resources/public/js/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/cluster.js -------------------------------------------------------------------------------- /resources/public/js/clusters-analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/clusters-analysis.js -------------------------------------------------------------------------------- /resources/public/js/clusters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/clusters.js -------------------------------------------------------------------------------- /resources/public/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/common.js -------------------------------------------------------------------------------- /resources/public/js/corex-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/corex-jquery.js -------------------------------------------------------------------------------- /resources/public/js/corex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/corex.js -------------------------------------------------------------------------------- /resources/public/js/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/public/js/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/d3.v3.min.js -------------------------------------------------------------------------------- /resources/public/js/discover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/discover.js -------------------------------------------------------------------------------- /resources/public/js/instance-problems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/instance-problems.js -------------------------------------------------------------------------------- /resources/public/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/jquery-ui.min.js -------------------------------------------------------------------------------- /resources/public/js/jquery.cookie-1.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/jquery.cookie-1.4.1.min.js -------------------------------------------------------------------------------- /resources/public/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/jquery.min.js -------------------------------------------------------------------------------- /resources/public/js/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/md5.js -------------------------------------------------------------------------------- /resources/public/js/orchestrator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/orchestrator.js -------------------------------------------------------------------------------- /resources/public/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/search.js -------------------------------------------------------------------------------- /resources/public/js/seed-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/seed-shared.js -------------------------------------------------------------------------------- /resources/public/js/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/seed.js -------------------------------------------------------------------------------- /resources/public/js/seeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/seeds.js -------------------------------------------------------------------------------- /resources/public/js/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/public/js/status.js -------------------------------------------------------------------------------- /resources/templates/about.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/about.tmpl -------------------------------------------------------------------------------- /resources/templates/agent.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/agent.tmpl -------------------------------------------------------------------------------- /resources/templates/agent_seed_details.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/agent_seed_details.tmpl -------------------------------------------------------------------------------- /resources/templates/agents.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/agents.tmpl -------------------------------------------------------------------------------- /resources/templates/audit.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/audit.tmpl -------------------------------------------------------------------------------- /resources/templates/audit_recovery.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/audit_recovery.tmpl -------------------------------------------------------------------------------- /resources/templates/cluster.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/cluster.tmpl -------------------------------------------------------------------------------- /resources/templates/cluster_pools.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/cluster_pools.tmpl -------------------------------------------------------------------------------- /resources/templates/clusters.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/clusters.tmpl -------------------------------------------------------------------------------- /resources/templates/clusters_analysis.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/clusters_analysis.tmpl -------------------------------------------------------------------------------- /resources/templates/discover.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/discover.tmpl -------------------------------------------------------------------------------- /resources/templates/faq.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/faq.tmpl -------------------------------------------------------------------------------- /resources/templates/home.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/home.tmpl -------------------------------------------------------------------------------- /resources/templates/keep-calm.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/keep-calm.tmpl -------------------------------------------------------------------------------- /resources/templates/layout.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/layout.tmpl -------------------------------------------------------------------------------- /resources/templates/search.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/search.tmpl -------------------------------------------------------------------------------- /resources/templates/seeds.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/seeds.tmpl -------------------------------------------------------------------------------- /resources/templates/status.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/resources/templates/status.tmpl -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/build -------------------------------------------------------------------------------- /script/dock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/dock -------------------------------------------------------------------------------- /script/ensure-go-installed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/ensure-go-installed -------------------------------------------------------------------------------- /script/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/go -------------------------------------------------------------------------------- /script/packagecloud-prune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/packagecloud-prune.sh -------------------------------------------------------------------------------- /script/packagecloud-push.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/packagecloud-push.rb -------------------------------------------------------------------------------- /script/test-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/test-all -------------------------------------------------------------------------------- /script/test-build: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "# Building" 4 | script/build 5 | -------------------------------------------------------------------------------- /script/test-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/test-docs -------------------------------------------------------------------------------- /script/test-integration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/test-integration -------------------------------------------------------------------------------- /script/test-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/test-source -------------------------------------------------------------------------------- /script/test-system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/test-system -------------------------------------------------------------------------------- /script/test-unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/script/test-unit -------------------------------------------------------------------------------- /tests/integration/analysis-all-intermediate-master-replicas-not-replicating/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-all-master-replicas-not-replicating-or-dead/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-all-master-replicas-not-replicating/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-dead-intermediate-master-and-replicas/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-dead-intermediate-master-with-single-replica-failing-to-connect/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-dead-intermediate-master-with-single-replica/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-dead-master-and-some-replicas/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-dead-master-partial-success/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-dead-master/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-errant-gtid-downtimed/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/analysis-errant-gtid-downtimed/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-errant-gtid/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-first-tier-replica-failing-to-connect/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-major-versions/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-no-failover-support/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-no-failure/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/analysis-no-failure/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-no-logging-replicas/create.sql: -------------------------------------------------------------------------------- 1 | UPDATE database_instance SET log_slave_updates=0; 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-no-logging-replicas/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-no-problem-downtime/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/analysis-no-problem-downtime/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-no-writeable-master/create.sql: -------------------------------------------------------------------------------- 1 | UPDATE database_instance SET read_only=1 where port=22293; 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-no-writeable-master/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-row-statement/create.sql: -------------------------------------------------------------------------------- 1 | UPDATE database_instance SET binlog_format='ROW' where port=22297; 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-row-statement/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-semi-sync-locked-master-hypothesis/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-semi-sync-locked-master/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-semi-sync-no-valid-replicas/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-semi-sync-not-enough-valid-replicas-invalid/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-semi-sync-not-enough-valid-replicas/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-semi-sync-ok/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/analysis-semi-sync-ok/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-unreachable-intermediate-master-partial-success/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/analysis-unreachable-intermediate-master-partial-success/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-unreachable-intermediate-master-with-lagging-replicas/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-unreachable-intermediate-master/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-unreachable-master-not-lagging-replicas/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-unreachable-master-partial-success-broken-replica/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-unreachable-master-partial-success/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/analysis-unreachable-master-partial-success/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-unreachable-master-with-delayed-replicas/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-unreachable-master-with-lagging-replicas-and-delayed-replicas/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-unreachable-master-with-lagging-replicas/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/analysis-unreachable-master/extra_args: -------------------------------------------------------------------------------- 1 | -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/integration/begin-maintenance/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/begin-maintenance/extra_args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/begin-maintenance/extra_args -------------------------------------------------------------------------------- /tests/integration/can-replicate-from-higher-version/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/can-replicate-from-sql-delay/create.sql: -------------------------------------------------------------------------------- 1 | UPDATE database_instance SET sql_delay=3600 where port=22297; 2 | -------------------------------------------------------------------------------- /tests/integration/can-replicate-from-sql-delay/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/can-replicate-from-trivial/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22297 2 | -------------------------------------------------------------------------------- /tests/integration/clusters-alias/expect_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/clusters-alias/expect_output -------------------------------------------------------------------------------- /tests/integration/clusters-alias/extra_args: -------------------------------------------------------------------------------- 1 | -c clusters-alias 2 | -------------------------------------------------------------------------------- /tests/integration/clusters/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/clusters/extra_args: -------------------------------------------------------------------------------- 1 | -c clusters 2 | -------------------------------------------------------------------------------- /tests/integration/create-per-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/create-per-test.sql -------------------------------------------------------------------------------- /tests/integration/get-candidate-replica/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22297 2 | -------------------------------------------------------------------------------- /tests/integration/get-candidate-replica/extra_args: -------------------------------------------------------------------------------- 1 | -c get-candidate-replica -i testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/get-cluster-heuristic-lag/expect_output: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tests/integration/get-cluster-heuristic-lag/extra_args: -------------------------------------------------------------------------------- 1 | -c get-cluster-heuristic-lag -i testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/in-maintenance/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/in-maintenance/create.sql -------------------------------------------------------------------------------- /tests/integration/in-maintenance/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/in-maintenance/extra_args: -------------------------------------------------------------------------------- 1 | -c in-maintenance -i testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/instance-status/expect_output: -------------------------------------------------------------------------------- 1 | [unknown,unchecked,5.6.28-log,rw,STATEMENT,>>,P-GTID] 2 | -------------------------------------------------------------------------------- /tests/integration/instance-status/extra_args: -------------------------------------------------------------------------------- 1 | -c instance-status -i testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/is-replicating-00/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/is-replicating-00/extra_args: -------------------------------------------------------------------------------- 1 | -c is-replicating -i testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/is-replicating-01/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/is-replicating-01/extra_args: -------------------------------------------------------------------------------- 1 | -c is-replicating -i testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/is-replicating-02/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/is-replicating-02/create.sql -------------------------------------------------------------------------------- /tests/integration/is-replicating-02/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/is-replicating-02/extra_args: -------------------------------------------------------------------------------- 1 | -c is-replicating -i testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/is-replication-stopped-00/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/is-replication-stopped-00/extra_args: -------------------------------------------------------------------------------- 1 | -c is-replication-stopped -i testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/is-replication-stopped-01/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/is-replication-stopped-01/extra_args: -------------------------------------------------------------------------------- 1 | -c is-replication-stopped -i testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/is-replication-stopped-02/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/is-replication-stopped-02/extra_args: -------------------------------------------------------------------------------- 1 | -c is-replication-stopped -i testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/is-replication-stopped-03/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/is-replication-stopped-03/extra_args: -------------------------------------------------------------------------------- 1 | -c is-replication-stopped -i testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/not-in-maintenance/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/not-in-maintenance/extra_args: -------------------------------------------------------------------------------- 1 | -c in-maintenance -i testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/orchestrator.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/orchestrator.conf.json -------------------------------------------------------------------------------- /tests/integration/search/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22295 2 | -------------------------------------------------------------------------------- /tests/integration/search/extra_args: -------------------------------------------------------------------------------- 1 | -c search -pattern 22295 2 | -------------------------------------------------------------------------------- /tests/integration/suggest-promoted-replacement-candidate-different-dc/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22297 2 | -------------------------------------------------------------------------------- /tests/integration/suggest-promoted-replacement-candidate-same-dc/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22297 2 | -------------------------------------------------------------------------------- /tests/integration/suggest-promoted-replacement-different-dc/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22295 2 | -------------------------------------------------------------------------------- /tests/integration/suggest-promoted-replacement-ignore-no-binlog/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/suggest-promoted-replacement-is-candidate/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/suggest-promoted-replacement-multiple-candidates-2/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22297 2 | -------------------------------------------------------------------------------- /tests/integration/suggest-promoted-replacement-multiple-candidates/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22295 2 | -------------------------------------------------------------------------------- /tests/integration/suggest-promoted-replacement-prefer-not-2/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22295 2 | -------------------------------------------------------------------------------- /tests/integration/suggest-promoted-replacement-prefer-not/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22297 2 | -------------------------------------------------------------------------------- /tests/integration/suggest-promoted-replacement-trivial/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/tag-00/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tag-00/create.sql -------------------------------------------------------------------------------- /tests/integration/tag-00/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/tag-00/extra_args: -------------------------------------------------------------------------------- 1 | -c tag -i testhost:22293 -tag role 2 | -------------------------------------------------------------------------------- /tests/integration/tag-01/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tag-01/create.sql -------------------------------------------------------------------------------- /tests/integration/tag-01/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/tag-01/extra_args: -------------------------------------------------------------------------------- 1 | -c tag -i testhost:22294 -tag priority=low 2 | -------------------------------------------------------------------------------- /tests/integration/tag-value-00/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tag-value-00/create.sql -------------------------------------------------------------------------------- /tests/integration/tag-value-00/expect_output: -------------------------------------------------------------------------------- 1 | backup 2 | -------------------------------------------------------------------------------- /tests/integration/tag-value-00/extra_args: -------------------------------------------------------------------------------- 1 | -c tag-value -i testhost:22293 -tag role 2 | -------------------------------------------------------------------------------- /tests/integration/tag-value-01/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tag-value-01/create.sql -------------------------------------------------------------------------------- /tests/integration/tag-value-01/expect_output: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/integration/tag-value-01/extra_args: -------------------------------------------------------------------------------- 1 | -c tag-value -i testhost:22295 -tag role 2 | -------------------------------------------------------------------------------- /tests/integration/tag-value-02/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tag-value-02/create.sql -------------------------------------------------------------------------------- /tests/integration/tag-value-02/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/tag-value-02/extra_args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tag-value-02/extra_args -------------------------------------------------------------------------------- /tests/integration/tagged-00/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-00/create.sql -------------------------------------------------------------------------------- /tests/integration/tagged-00/expect_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-00/expect_output -------------------------------------------------------------------------------- /tests/integration/tagged-00/extra_args: -------------------------------------------------------------------------------- 1 | -c tagged -tag role 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-01/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-01/create.sql -------------------------------------------------------------------------------- /tests/integration/tagged-01/expect_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-01/expect_output -------------------------------------------------------------------------------- /tests/integration/tagged-01/extra_args: -------------------------------------------------------------------------------- 1 | -c tagged -tag role=backup 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-02/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-02/create.sql -------------------------------------------------------------------------------- /tests/integration/tagged-02/expect_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-02/expect_output -------------------------------------------------------------------------------- /tests/integration/tagged-02/extra_args: -------------------------------------------------------------------------------- 1 | -c tagged -tag candidate 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-03/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-03/create.sql -------------------------------------------------------------------------------- /tests/integration/tagged-03/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22295 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-03/extra_args: -------------------------------------------------------------------------------- 1 | -c tagged -tag role= 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-04/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-04/create.sql -------------------------------------------------------------------------------- /tests/integration/tagged-04/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22297 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-04/extra_args: -------------------------------------------------------------------------------- 1 | -c tagged -tag ~role 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-05/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-05/create.sql -------------------------------------------------------------------------------- /tests/integration/tagged-05/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22296 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-05/extra_args: -------------------------------------------------------------------------------- 1 | -c tagged -tag role,candidate 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-06/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-06/create.sql -------------------------------------------------------------------------------- /tests/integration/tagged-06/expect_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-06/expect_output -------------------------------------------------------------------------------- /tests/integration/tagged-06/extra_args: -------------------------------------------------------------------------------- 1 | -c tagged -tag role,~candidate 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-07/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-07/create.sql -------------------------------------------------------------------------------- /tests/integration/tagged-07/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22296 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-07/extra_args: -------------------------------------------------------------------------------- 1 | -c tagged -tag role=backup,candidate 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-08/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-08/create.sql -------------------------------------------------------------------------------- /tests/integration/tagged-08/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/tagged-08/extra_args: -------------------------------------------------------------------------------- 1 | -c tagged -tag role=delayed,candidate 2 | -------------------------------------------------------------------------------- /tests/integration/tagged-09/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-09/create.sql -------------------------------------------------------------------------------- /tests/integration/tagged-09/expect_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tagged-09/expect_output -------------------------------------------------------------------------------- /tests/integration/tagged-09/extra_args: -------------------------------------------------------------------------------- 1 | -c tagged -tag ~role=backup 2 | -------------------------------------------------------------------------------- /tests/integration/tags-00/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tags-00/create.sql -------------------------------------------------------------------------------- /tests/integration/tags-00/expect_output: -------------------------------------------------------------------------------- 1 | candidate= 2 | role=backup 3 | -------------------------------------------------------------------------------- /tests/integration/tags-00/extra_args: -------------------------------------------------------------------------------- 1 | -c tags -i testhost:22296 2 | -------------------------------------------------------------------------------- /tests/integration/tags-01/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/tags-01/create.sql -------------------------------------------------------------------------------- /tests/integration/tags-01/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/tags-01/extra_args: -------------------------------------------------------------------------------- 1 | -c tags -i testhost:22295 2 | -------------------------------------------------------------------------------- /tests/integration/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/test.sh -------------------------------------------------------------------------------- /tests/integration/topology-tabulated/extra_args: -------------------------------------------------------------------------------- 1 | -c topology-tabulated -i testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/topology-tags/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/topology-tags/create.sql -------------------------------------------------------------------------------- /tests/integration/topology-tags/expect_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/topology-tags/expect_output -------------------------------------------------------------------------------- /tests/integration/topology-tags/extra_args: -------------------------------------------------------------------------------- 1 | -c topology-tags -i testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/topology/expect_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/topology/expect_output -------------------------------------------------------------------------------- /tests/integration/topology/extra_args: -------------------------------------------------------------------------------- 1 | -c topology -i testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/untag-00/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/untag-00/create.sql -------------------------------------------------------------------------------- /tests/integration/untag-00/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/untag-00/extra_args: -------------------------------------------------------------------------------- 1 | -c untag -i testhost:22293 -tag candidate 2 | -------------------------------------------------------------------------------- /tests/integration/untag-01/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/untag-01/create.sql -------------------------------------------------------------------------------- /tests/integration/untag-01/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/untag-01/extra_args: -------------------------------------------------------------------------------- 1 | -c untag -i testhost:22293 -tag role 2 | -------------------------------------------------------------------------------- /tests/integration/untag-02/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/untag-02/create.sql -------------------------------------------------------------------------------- /tests/integration/untag-02/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/untag-02/extra_args: -------------------------------------------------------------------------------- 1 | -c untag -i testhost:22293 -tag role=backup 2 | -------------------------------------------------------------------------------- /tests/integration/untag-03/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/untag-03/create.sql -------------------------------------------------------------------------------- /tests/integration/untag-03/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/untag-03/extra_args: -------------------------------------------------------------------------------- 1 | -c untag -i testhost:22293 -tag role= 2 | -------------------------------------------------------------------------------- /tests/integration/untag-04/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/untag-04/create.sql -------------------------------------------------------------------------------- /tests/integration/untag-04/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/untag-04/extra_args: -------------------------------------------------------------------------------- 1 | -c untag -i testhost:22293 -tag role=delayed 2 | -------------------------------------------------------------------------------- /tests/integration/untag-all-00/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/untag-all-00/create.sql -------------------------------------------------------------------------------- /tests/integration/untag-all-00/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/untag-all-00/extra_args: -------------------------------------------------------------------------------- 1 | -c untag-all -tag role=delayed 2 | -------------------------------------------------------------------------------- /tests/integration/untag-all-01/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/untag-all-01/create.sql -------------------------------------------------------------------------------- /tests/integration/untag-all-01/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22295 2 | -------------------------------------------------------------------------------- /tests/integration/untag-all-01/extra_args: -------------------------------------------------------------------------------- 1 | -c untag-all -tag role= 2 | -------------------------------------------------------------------------------- /tests/integration/untag-all-02/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/untag-all-02/create.sql -------------------------------------------------------------------------------- /tests/integration/untag-all-02/expect_failure: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/untag-all-02/extra_args: -------------------------------------------------------------------------------- 1 | -c untag-all -tag role 2 | -------------------------------------------------------------------------------- /tests/integration/untag-all-03/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/untag-all-03/create.sql -------------------------------------------------------------------------------- /tests/integration/untag-all-03/expect_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/untag-all-03/expect_output -------------------------------------------------------------------------------- /tests/integration/untag-all-03/extra_args: -------------------------------------------------------------------------------- 1 | -c untag-all -tag role=backup 2 | -------------------------------------------------------------------------------- /tests/integration/which-cluster-instances/extra_args: -------------------------------------------------------------------------------- 1 | -c which-replicas -i testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/which-cluster-master/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22293 2 | -------------------------------------------------------------------------------- /tests/integration/which-master/expect_output: -------------------------------------------------------------------------------- 1 | testhost:22294 2 | -------------------------------------------------------------------------------- /tests/integration/which-master/extra_args: -------------------------------------------------------------------------------- 1 | -c which-master -i testhost:22295 2 | -------------------------------------------------------------------------------- /tests/integration/which-replicas/expect_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/integration/which-replicas/expect_output -------------------------------------------------------------------------------- /tests/integration/which-replicas/extra_args: -------------------------------------------------------------------------------- 1 | -c which-cluster-instances -i testhost:22294 2 | -------------------------------------------------------------------------------- /tests/system/all-instances/01-instances/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c all-instances | sort 2 | -------------------------------------------------------------------------------- /tests/system/all-instances/02-replicas/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/all-instances/02-replicas/run -------------------------------------------------------------------------------- /tests/system/all-instances/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/all-instances/teardown: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/analysis-locked-semi-sync-master/01-analysis-locked-hypothesis/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/system/analysis-locked-semi-sync-master/02-analysis-locked/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c replication-analysis 2 | -------------------------------------------------------------------------------- /tests/system/analysis-locked-semi-sync-master/02-analysis-locked/setup: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sleep 15 4 | -------------------------------------------------------------------------------- /tests/system/analysis-locked-semi-sync-master/depends-on: -------------------------------------------------------------------------------- 1 | all-instances 2 | -------------------------------------------------------------------------------- /tests/system/analysis-locked-semi-sync-master/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/check_restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/check_restore -------------------------------------------------------------------------------- /tests/system/co-master-failover/01-make-co-master/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c make-co-master -i 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/co-master-failover/03-failover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/co-master-failover/04-read-only/expect_output: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/system/co-master-failover/05-count-replicas/expect_output: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/system/co-master-failover/06-downtimed/expect_output: -------------------------------------------------------------------------------- 1 | 10113 2 | -------------------------------------------------------------------------------- /tests/system/co-master-failover/07-analysis/expect_output: -------------------------------------------------------------------------------- 1 | DeadCoMaster 2 | -------------------------------------------------------------------------------- /tests/system/co-master-failover/07-analysis/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c replication-analysis | awk 'NF{ print $NF }' 2 | -------------------------------------------------------------------------------- /tests/system/co-master-failover/depends-on: -------------------------------------------------------------------------------- 1 | make-co-master 2 | -------------------------------------------------------------------------------- /tests/system/co-master-failover/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/co-master-failover/teardown_redeploy: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/debug_dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/debug_dump -------------------------------------------------------------------------------- /tests/system/deploy-replication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/deploy-replication -------------------------------------------------------------------------------- /tests/system/expect_restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/expect_restore -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-auto/01-takeover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10112 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-auto/02-is-replicating/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-auto/02-is-replicating/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c is-replicating -i 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-auto/04-takeover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-auto/05-is-replicating/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-auto/05-is-replicating/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c is-replicating -i 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-auto/07-takeover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-auto/08-is-replicating/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10112 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-auto/08-is-replicating/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c is-replicating -i 127.0.0.1:10112 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-auto/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-auto/teardown: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-fail-cross-region/depends-on: -------------------------------------------------------------------------------- 1 | graceful-master-takeover 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-fail-cross-region/expect_failure: -------------------------------------------------------------------------------- 1 | PreventCrossRegionMasterFailover 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-fail-no-target/depends-on: -------------------------------------------------------------------------------- 1 | graceful-master-takeover 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-fail-non-direct-replica/depends-on: -------------------------------------------------------------------------------- 1 | graceful-master-takeover 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover-fail-non-direct-replica/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/01-takeover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10112 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/02-is-replicating/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/02-is-replicating/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c is-replicating -i 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/03-start-replica/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/03-start-replica/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c start-replica -i 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/04-is-replicating/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/04-is-replicating/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c is-replicating -i 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/06-takeover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/07-start-replica/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10112 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/07-start-replica/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c start-replica -i 127.0.0.1:10112 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/08-is-replicating/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10112 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/08-is-replicating/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c is-replicating -i 127.0.0.1:10112 2 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/graceful-master-takeover/teardown: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/01-no-errant/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/01-no-errant/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/gtid-errant/01-no-errant/run -------------------------------------------------------------------------------- /tests/system/gtid-errant/02-inject-errant/expect_output: -------------------------------------------------------------------------------- 1 | 10112 2 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/02-inject-errant/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/gtid-errant/02-inject-errant/run -------------------------------------------------------------------------------- /tests/system/gtid-errant/03-reset-master/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10112 2 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/03-reset-master/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/gtid-errant/03-reset-master/run -------------------------------------------------------------------------------- /tests/system/gtid-errant/04-no-errant/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/04-no-errant/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/gtid-errant/04-no-errant/run -------------------------------------------------------------------------------- /tests/system/gtid-errant/04-no-errant/setup: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sleep 2 4 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/05-inject-errant/expect_output: -------------------------------------------------------------------------------- 1 | 10113 2 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/05-inject-errant/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/gtid-errant/05-inject-errant/run -------------------------------------------------------------------------------- /tests/system/gtid-errant/06-relocate-nested-replica/expect_output: -------------------------------------------------------------------------------- 1 | 10113 2 | 10114 3 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/07-inject-empty/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/07-inject-empty/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/gtid-errant/07-inject-empty/run -------------------------------------------------------------------------------- /tests/system/gtid-errant/08-no-errant/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/08-no-errant/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/gtid-errant/08-no-errant/run -------------------------------------------------------------------------------- /tests/system/gtid-errant/08-no-errant/setup: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sleep 2 4 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/depends-on: -------------------------------------------------------------------------------- 1 | gtid-no-errant 2 | relocate-single 3 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/gtid-errant/teardown: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/gtid-no-errant/01-no-errant/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/gtid-no-errant/01-no-errant/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/gtid-no-errant/01-no-errant/run -------------------------------------------------------------------------------- /tests/system/gtid-no-errant/02-reset-master/expect_failure: -------------------------------------------------------------------------------- 1 | gtid-errant-reset-master will not operate on 127.0.0.1:10112 2 | -------------------------------------------------------------------------------- /tests/system/gtid-no-errant/03-inject-empty/expect_failure: -------------------------------------------------------------------------------- 1 | gtid-errant-inject-empty will not operate on 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/gtid-no-errant/depends-on: -------------------------------------------------------------------------------- 1 | all-instances 2 | -------------------------------------------------------------------------------- /tests/system/gtid-no-errant/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/gtid-no-errant/teardown: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/intermediate-master-failover/02-failover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10114 2 | -------------------------------------------------------------------------------- /tests/system/intermediate-master-failover/02-failover/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c which-master -i 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/intermediate-master-failover/03-failover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/intermediate-master-failover/03-failover/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c which-master -i 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/intermediate-master-failover/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/intermediate-master-failover/teardown_redeploy: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/make-co-master/01-make-co-master/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c make-co-master -i 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/make-co-master/02-is-co-master/expect_output: -------------------------------------------------------------------------------- 1 | 10111 2 | 10113 3 | -------------------------------------------------------------------------------- /tests/system/make-co-master/02-is-co-master/setup: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/make-co-master/03-topology/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/make-co-master/03-topology/run -------------------------------------------------------------------------------- /tests/system/make-co-master/04-fail-make-co-master/run: -------------------------------------------------------------------------------- 1 | orchestrator-client -c make-co-master -i 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/make-co-master/05-relocate/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/make-co-master/05-relocate/run -------------------------------------------------------------------------------- /tests/system/make-co-master/06-topology/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/make-co-master/06-topology/run -------------------------------------------------------------------------------- /tests/system/make-co-master/depends-on: -------------------------------------------------------------------------------- 1 | relocate-multiple 2 | -------------------------------------------------------------------------------- /tests/system/make-co-master/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/make-co-master/teardown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/make-co-master/teardown -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag-cross-datacenter/01-failover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10112 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag-cross-datacenter/02-read-only/expect_output: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag-cross-datacenter/03-downtimed/expect_output: -------------------------------------------------------------------------------- 1 | 10111 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag-cross-datacenter/depends-on: -------------------------------------------------------------------------------- 1 | master-failover-candidate 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag-cross-datacenter/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag-cross-datacenter/teardown_redeploy: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag-cross-region/01-failover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag-cross-region/02-read-only/expect_output: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag-cross-region/03-downtimed/expect_output: -------------------------------------------------------------------------------- 1 | 10111 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag-cross-region/depends-on: -------------------------------------------------------------------------------- 1 | master-failover-candidate 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag-cross-region/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag-cross-region/teardown_redeploy: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag/01-failover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag/02-read-only/expect_output: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag/03-count-replicas/expect_output: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag/04-downtimed/expect_output: -------------------------------------------------------------------------------- 1 | 10111 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag/depends-on: -------------------------------------------------------------------------------- 1 | master-failover-candidate 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate-lag/teardown_redeploy: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate/01-failover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate/02-read-only/expect_output: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate/03-count-replicas/expect_output: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate/04-downtimed/expect_output: -------------------------------------------------------------------------------- 1 | 10111 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate/depends-on: -------------------------------------------------------------------------------- 1 | master-failover 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/master-failover-candidate/teardown_redeploy: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-failure/01-failover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-failure/02-read-only/expect_output: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-failure/03-downtimed/expect_output: -------------------------------------------------------------------------------- 1 | 10111 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-failure/04-promoted-replica/expect_output: -------------------------------------------------------------------------------- 1 | 10111 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-failure/depends-on: -------------------------------------------------------------------------------- 1 | master-failover 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-failure/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-failure/teardown_redeploy: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-success/01-failover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-success/02-read-only/expect_output: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-success/03-count-replicas/expect_output: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-success/04-downtimed/expect_output: -------------------------------------------------------------------------------- 1 | 10111 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-success/depends-on: -------------------------------------------------------------------------------- 1 | master-failover 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-success/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/master-failover-fail-promotion-lag-minutes-success/teardown_redeploy: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-lost-replicas/01-failover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-lost-replicas/02-read-only/expect_output: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-lost-replicas/03-count-replicas/expect_output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-lost-replicas/04-downtimed/expect_output: -------------------------------------------------------------------------------- 1 | 10111 2 | 10112 3 | -------------------------------------------------------------------------------- /tests/system/master-failover-lost-replicas/05-which-master/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10113 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-lost-replicas/depends-on: -------------------------------------------------------------------------------- 1 | master-failover 2 | -------------------------------------------------------------------------------- /tests/system/master-failover-lost-replicas/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/master-failover-lost-replicas/teardown_redeploy: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/master-failover/01-failover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1 2 | -------------------------------------------------------------------------------- /tests/system/master-failover/01-failover/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/master-failover/01-failover/run -------------------------------------------------------------------------------- /tests/system/master-failover/01-failover/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/master-failover/01-failover/setup -------------------------------------------------------------------------------- /tests/system/master-failover/02-read-only/expect_output: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/system/master-failover/02-read-only/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/master-failover/02-read-only/run -------------------------------------------------------------------------------- /tests/system/master-failover/03-count-replicas/expect_output: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/system/master-failover/04-downtimed/expect_output: -------------------------------------------------------------------------------- 1 | 10111 2 | -------------------------------------------------------------------------------- /tests/system/master-failover/04-downtimed/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/master-failover/04-downtimed/run -------------------------------------------------------------------------------- /tests/system/master-failover/depends-on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/master-failover/depends-on -------------------------------------------------------------------------------- /tests/system/master-failover/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/master-failover/teardown_redeploy: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/orchestrator-ci-system.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/orchestrator-ci-system.conf.json -------------------------------------------------------------------------------- /tests/system/recover-read-only-master/01-recover/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "RecoverNonWriteableMaster": true 3 | } 4 | -------------------------------------------------------------------------------- /tests/system/recover-read-only-master/01-recover/expect_output: -------------------------------------------------------------------------------- 1 | 127.0.0.1:10111 2 | -------------------------------------------------------------------------------- /tests/system/recover-read-only-master/02-read-only/expect_output: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/system/recover-read-only-master/03-count-replicas/expect_output: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/system/recover-read-only-master/04-downtimed/expect_output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/recover-read-only-master/depends-on: -------------------------------------------------------------------------------- 1 | all-instances 2 | -------------------------------------------------------------------------------- /tests/system/recover-read-only-master/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/recover-read-only-master/teardown_redeploy: -------------------------------------------------------------------------------- 1 | sleep 3 2 | -------------------------------------------------------------------------------- /tests/system/relocate-multiple/01-relocate/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/relocate-multiple/01-relocate/run -------------------------------------------------------------------------------- /tests/system/relocate-multiple/02-relocate/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/relocate-multiple/02-relocate/run -------------------------------------------------------------------------------- /tests/system/relocate-multiple/03-relocate/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/relocate-multiple/03-relocate/run -------------------------------------------------------------------------------- /tests/system/relocate-multiple/04-topology/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/relocate-multiple/04-topology/run -------------------------------------------------------------------------------- /tests/system/relocate-multiple/depends-on: -------------------------------------------------------------------------------- 1 | relocate-single 2 | -------------------------------------------------------------------------------- /tests/system/relocate-multiple/skip_run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/relocate-multiple/teardown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/relocate-multiple/teardown -------------------------------------------------------------------------------- /tests/system/relocate-replicas/depends-on: -------------------------------------------------------------------------------- 1 | relocate-multiple 2 | -------------------------------------------------------------------------------- /tests/system/relocate-replicas/expect_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/relocate-replicas/expect_output -------------------------------------------------------------------------------- /tests/system/relocate-replicas/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/relocate-replicas/run -------------------------------------------------------------------------------- /tests/system/relocate-replicas/teardown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/relocate-replicas/teardown -------------------------------------------------------------------------------- /tests/system/relocate-single/depends-on: -------------------------------------------------------------------------------- 1 | all-instances 2 | -------------------------------------------------------------------------------- /tests/system/relocate-single/expect_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/relocate-single/expect_output -------------------------------------------------------------------------------- /tests/system/relocate-single/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/relocate-single/run -------------------------------------------------------------------------------- /tests/system/relocate-single/teardown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/relocate-single/teardown -------------------------------------------------------------------------------- /tests/system/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/setup -------------------------------------------------------------------------------- /tests/system/teardown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/teardown -------------------------------------------------------------------------------- /tests/system/test-refresh-connections: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/test-refresh-connections -------------------------------------------------------------------------------- /tests/system/test-retry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/test-retry -------------------------------------------------------------------------------- /tests/system/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/tests/system/test.sh -------------------------------------------------------------------------------- /vagrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vagrant/README.md -------------------------------------------------------------------------------- /vagrant/admin-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vagrant/admin-build.sh -------------------------------------------------------------------------------- /vagrant/base-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vagrant/base-build.sh -------------------------------------------------------------------------------- /vagrant/db1-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vagrant/db1-build.sh -------------------------------------------------------------------------------- /vagrant/db1-my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vagrant/db1-my.cnf -------------------------------------------------------------------------------- /vagrant/db2-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vagrant/db2-build.sh -------------------------------------------------------------------------------- /vagrant/db2-my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vagrant/db2-my.cnf -------------------------------------------------------------------------------- /vagrant/db3-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vagrant/db3-build.sh -------------------------------------------------------------------------------- /vagrant/db3-my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vagrant/db3-my.cnf -------------------------------------------------------------------------------- /vagrant/db4-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vagrant/db4-build.sh -------------------------------------------------------------------------------- /vagrant/db4-my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vagrant/db4-my.cnf -------------------------------------------------------------------------------- /vendor/github.com/armon/consul-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/consul-api/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/armon/consul-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/consul-api/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/armon/consul-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/consul-api/README.md -------------------------------------------------------------------------------- /vendor/github.com/armon/consul-api/acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/consul-api/acl.go -------------------------------------------------------------------------------- /vendor/github.com/armon/consul-api/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/consul-api/agent.go -------------------------------------------------------------------------------- /vendor/github.com/armon/consul-api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/consul-api/api.go -------------------------------------------------------------------------------- /vendor/github.com/armon/consul-api/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/consul-api/catalog.go -------------------------------------------------------------------------------- /vendor/github.com/armon/consul-api/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/consul-api/event.go -------------------------------------------------------------------------------- /vendor/github.com/armon/consul-api/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/consul-api/health.go -------------------------------------------------------------------------------- /vendor/github.com/armon/consul-api/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/consul-api/kv.go -------------------------------------------------------------------------------- /vendor/github.com/armon/consul-api/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/consul-api/session.go -------------------------------------------------------------------------------- /vendor/github.com/armon/consul-api/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/consul-api/status.go -------------------------------------------------------------------------------- /vendor/github.com/armon/go-metrics/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/go-metrics/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/armon/go-metrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/go-metrics/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/armon/go-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/go-metrics/README.md -------------------------------------------------------------------------------- /vendor/github.com/armon/go-metrics/inmem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/go-metrics/inmem.go -------------------------------------------------------------------------------- /vendor/github.com/armon/go-metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/go-metrics/metrics.go -------------------------------------------------------------------------------- /vendor/github.com/armon/go-metrics/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/go-metrics/sink.go -------------------------------------------------------------------------------- /vendor/github.com/armon/go-metrics/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/go-metrics/start.go -------------------------------------------------------------------------------- /vendor/github.com/armon/go-metrics/statsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/go-metrics/statsd.go -------------------------------------------------------------------------------- /vendor/github.com/armon/go-metrics/statsite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/armon/go-metrics/statsite.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/inject/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/codegangsta/inject/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/inject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/codegangsta/inject/README.md -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/inject/inject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/codegangsta/inject/inject.go -------------------------------------------------------------------------------- /vendor/github.com/cyberdelia/go-metrics-graphite/.gitignore: -------------------------------------------------------------------------------- 1 | .tags 2 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/fatih/color/go.mod -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/fatih/color/go.sum -------------------------------------------------------------------------------- /vendor/github.com/go-martini/martini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-martini/martini/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-martini/martini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-martini/martini/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-martini/martini/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-martini/martini/env.go -------------------------------------------------------------------------------- /vendor/github.com/go-martini/martini/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-martini/martini/logger.go -------------------------------------------------------------------------------- /vendor/github.com/go-martini/martini/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-martini/martini/router.go -------------------------------------------------------------------------------- /vendor/github.com/go-martini/martini/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-martini/martini/static.go -------------------------------------------------------------------------------- /vendor/github.com/go-martini/martini/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.1 -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-sql-driver/mysql/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-sql-driver/mysql/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-sql-driver/mysql/auth.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-sql-driver/mysql/const.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/dsn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-sql-driver/mysql/dsn.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-sql-driver/mysql/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/go-sql-driver/mysql 2 | 3 | go 1.10 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-sql-driver/mysql/rows.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/go-sql-driver/mysql/utils.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/consul/api/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/api/acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/consul/api/acl.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/consul/api/api.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/api/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/consul/api/go.mod -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/api/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/consul/api/go.sum -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/api/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/consul/api/kv.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/api/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/consul/api/lock.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/api/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/consul/api/raw.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/api/txn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/consul/api/txn.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-cleanhttp/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hashicorp/go-cleanhttp 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/.gitignore: -------------------------------------------------------------------------------- 1 | .idea* -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/go-hclog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/go-hclog/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/go-hclog/global.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/go-hclog/go.mod -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/go-hclog/go.sum -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/go-hclog/logger.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/stdlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/go-hclog/stdlog.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/go-hclog/writer.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-msgpack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/go-msgpack/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/golang-lru/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/Makefile -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/commands.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/config.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/fsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/fsm.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/future.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/future.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/inflight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/inflight.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/log.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/log_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/log_cache.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/observer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/observer.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/peer.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/raft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/raft.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/snapshot.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/stable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/stable.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/state.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/transport.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/raft/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/raft/util.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/hashicorp/serf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/howeyc/gopass/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/howeyc/gopass/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/howeyc/gopass/README.md -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/pass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/howeyc/gopass/pass.go -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/howeyc/gopass/terminal.go -------------------------------------------------------------------------------- /vendor/github.com/martini-contrib/auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/martini-contrib/auth/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/martini-contrib/auth/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/martini-contrib/auth/util.go -------------------------------------------------------------------------------- /vendor/github.com/martini-contrib/auth/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.1 -------------------------------------------------------------------------------- /vendor/github.com/martini-contrib/gzip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/martini-contrib/gzip/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/martini-contrib/gzip/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/martini-contrib/gzip/gzip.go -------------------------------------------------------------------------------- /vendor/github.com/martini-contrib/gzip/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.1 -------------------------------------------------------------------------------- /vendor/github.com/martini-contrib/render/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.1 -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-colorable/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-colorable/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-colorable/go.mod -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-colorable/go.sum -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-isatty/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-isatty/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-isatty/go.mod -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-isatty/go.sum -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-isatty/go.test.sh -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-sqlite3/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-sqlite3/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/mattn/go-sqlite3/error.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mattn/go-sqlite3 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-homedir/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/go-homedir 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.out 2 | .directory -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/max.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/montanaflynn/stats/max.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/min.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/montanaflynn/stats/min.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/montanaflynn/stats/sum.go -------------------------------------------------------------------------------- /vendor/github.com/openark/golib/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/openark/golib/log/log.go -------------------------------------------------------------------------------- /vendor/github.com/outbrain/golib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/outbrain/golib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/outbrain/golib/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/outbrain/golib/log/log.go -------------------------------------------------------------------------------- /vendor/github.com/oxtoacart/bpool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/oxtoacart/bpool/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/oxtoacart/bpool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/oxtoacart/bpool/README.md -------------------------------------------------------------------------------- /vendor/github.com/oxtoacart/bpool/bpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/oxtoacart/bpool/bpool.go -------------------------------------------------------------------------------- /vendor/github.com/oxtoacart/bpool/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/oxtoacart/bpool/go.mod -------------------------------------------------------------------------------- /vendor/github.com/oxtoacart/bpool/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/oxtoacart/bpool/go.sum -------------------------------------------------------------------------------- /vendor/github.com/sjmudd/stopwatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/github.com/sjmudd/stopwatch/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/windows/empty.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/README -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/errors.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/read.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/scanner/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/scanner/errors.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/scanner/scanner.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/set.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/token/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/token/position.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/token/serialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/token/serialize.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/token/token.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/types/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/types/bool.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/types/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/types/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/types/enum.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/types/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/types/int.go -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/types/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/gcfg.v1/types/scan.go -------------------------------------------------------------------------------- /vendor/gopkg.in/warnings.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/warnings.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/warnings.v0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/warnings.v0/README -------------------------------------------------------------------------------- /vendor/gopkg.in/warnings.v0/warnings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/gopkg.in/warnings.v0/warnings.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openark/orchestrator/HEAD/vendor/modules.txt --------------------------------------------------------------------------------