From bf0e1564965e91c9793a2845bc63b15a1e666c19 Mon Sep 17 00:00:00 2001 From: Ryan Cragun Date: Fri, 9 Aug 2024 16:28:28 -0600 Subject: [PATCH] enos: wait for both clusters to be healthy before configuring replication (#28049) Signed-off-by: Ryan Cragun --- enos/enos-scenario-replication.hcl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/enos/enos-scenario-replication.hcl b/enos/enos-scenario-replication.hcl index 64024b1ea6..9c38096d71 100644 --- a/enos/enos-scenario-replication.hcl +++ b/enos/enos-scenario-replication.hcl @@ -710,8 +710,11 @@ scenario "replication" { EOF module = module.vault_setup_perf_primary depends_on = [ + // Wait for both clusters to be up and healthy... + step.get_primary_cluster_ips, + step.get_secondary_cluster_ips, step.write_test_data_on_primary, - // Do base verification before continuing on to our performance replication verification. + // Wait base verification to complete... step.verify_vault_version, step.verify_ui, ]