From e8b42312518681a983af8d72b37e5bc9cb5ee1f9 Mon Sep 17 00:00:00 2001 From: Tullio Sebastiani Date: Fri, 13 Jan 2023 11:27:56 +0100 Subject: [PATCH] minor Readme fixes --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index da0a600c..67f0c453 100644 --- a/README.md +++ b/README.md @@ -57,23 +57,23 @@ Please **be careful** on deleting the working directory content because without #### Single node cluster creation ``` - run -v :/workdir\ - -e WORKING_MODE=C\ - -e PULL_SECRET="`base64 `"\ - -e AWS_ACCESS_KEY_ID=\ - -e AWS_SECRET_ACCESS_KEY=\ - -e AWS_DEFAULT_REGION=\ - -ti quay.io/crcont/crc-cloud + run -v :/workdir \ + -e WORKING_MODE=C \ + -e PULL_SECRET="`base64 `" \ + -e AWS_ACCESS_KEY_ID= \ + -e AWS_SECRET_ACCESS_KEY= \ + -e AWS_DEFAULT_REGION= \ + quay.io/crcont/crc-cloud ``` #### Single node cluster teardown ``` - run -v :/workdir\ - -e WORKING_MODE=T\ - -e TEARDOWN_RUN_ID=\ - -e AWS_ACCESS_KEY_ID=\ - -e AWS_SECRET_ACCESS_KEY=\ - -e AWS_DEFAULT_REGION=us-west-2\ + run -v :/workdir \ + -e WORKING_MODE=T \ + -e TEARDOWN_RUN_ID= \ + -e AWS_ACCESS_KEY_ID= \ + -e AWS_SECRET_ACCESS_KEY= \ + -e AWS_DEFAULT_REGION=us-west-2 \ quay.io/crcont/crc-cloud ``` (check [here](#workdir) for **TEARDOWN_RUN_ID** infos and **WORKDIR** setup instructions ) @@ -99,7 +99,7 @@ Environment variables will be passed to the container from the command line invo | VARIABLE | DESCRIPTION | | --- | ---| | WORKING_MODE | T (teardown) | -| TEARDOWN_ID | the name of the folder created inside the working directory, containing all the metadata needed to teardown the cluster (if specified in creation will match with CREATE_RUN_ID)| +| TEARDOWN_RUN_ID | the name of the folder created inside the working directory, containing all the metadata needed to teardown the cluster (if specified in creation will match with CREATE_RUN_ID)| | AWS_ACCESS_KEY_ID | AWS access key (infos [here](#prereq)) | | AWS_SECRET_ACCESS_KEY | AWS secret access key (infos [here](#prereq)) | | AWS_DEFAULT_REGION | AWS region where the cluster has been deployed ( currently us-west-2 is the only supported) |