From e2a3e517d8d202afe979d5fc0d5d10b892442c06 Mon Sep 17 00:00:00 2001 From: Julien4218 Date: Thu, 14 Jan 2021 10:39:49 -0800 Subject: [PATCH] Fix teardown documentation for manual testing. Add elastic search manual testing definition. --- test/manual/readme.MD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/manual/readme.MD b/test/manual/readme.MD index c6916fd4b..03d30f6b4 100644 --- a/test/manual/readme.MD +++ b/test/manual/readme.MD @@ -34,7 +34,7 @@ Once you have the password, use a `Remote Desktop Connection` client with the cr # Tearing down -To teardown all the hosts, re-run the deployer in batch mode with the `-t` option. +To teardown all the hosts, re-run the deployer in batch mode with the option `-m teardown` (instead of `-m deploy`). Run the snippet below after replacing: * The path `` with the absolute path to the manual `definitions` folder (docker requires absolute path for mounting directories) @@ -44,5 +44,5 @@ Run the snippet below after replacing: docker run -i \ -v ~/configs/:/mnt/deployer/configs/ \ -v /definitions/:/mnt/deployer/definitions/ \ ---entrypoint ruby ghcr.io/newrelic/deployer:latest batch.rb -c configs/.json -d definitions -s 20 -m deploy -l debug -t +--entrypoint ruby ghcr.io/newrelic/deployer:latest batch.rb -c configs/.json -d definitions -s 20 -m teardown -l debug ```