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
This commit is contained in:
Bryan Strassner 2018-06-05 22:40:32 -05:00
parent 8341d95ab7
commit fd2ccd510f
1 changed files with 1 additions and 1 deletions

View File

@ -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
}