From fd2ccd510f86f2047cdce3b38c274bc744fc8dcc Mon Sep 17 00:00:00 2001 From: Bryan Strassner Date: Tue, 5 Jun 2018 22:40:32 -0500 Subject: [PATCH] Fix echo string for Armada Image reference This changes the echo statement that was erroneously representing the envrionment variable for ARMADA_IMAGE, by escaping the leading dollar sign. Change-Id: I12bdaeec7a2ce2f7667e2a040e4084836163f7d9 --- manifests/common/deploy-airship.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/common/deploy-airship.sh b/manifests/common/deploy-airship.sh index d5dab7dd..13d6cf56 100755 --- a/manifests/common/deploy-airship.sh +++ b/manifests/common/deploy-airship.sh @@ -285,7 +285,7 @@ function setup_deploy_site() { echo "-----------" echo "If you need to run Armada directly to deploy charts (fix something broken?), the following may be of use:" echo "export ARMADA_IMAGE=artifacts-aic.atlantafoundry.com/att-comdev/armada" - echo "docker run -t -v ~/.kube:/armada/.kube -v ${WORKSPACE}/site:/target --net=host '${ARMADA_IMAGE}' apply /target/your-yaml.yaml" + echo "docker run -t -v ~/.kube:/armada/.kube -v ${WORKSPACE}/site:/target --net=host \${ARMADA_IMAGE} apply /target/your-yaml.yaml" echo " " set -x }