aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2018-11-07 06:26:43 -0800
committerVictor Morales <victor.morales@intel.com>2018-11-07 06:31:02 -0800
commitf9b14c24609fb50b3de07c334527e44d41226a58 (patch)
tree5b5f6a00f05589135d3a8ef7fc0ea58ee85609a1
parent61e765be81a88f73064c57b236a55c58287e0edc (diff)
Fix start.sh script
The start bash script is used during development phase to quickly test some changes in source code. This script requires to get the IP address of the Consul database and export the image name. This change fixes those instructions Change-Id: I73c4c4be0a9476304bedcd4c62a723ff1ecc7f7c Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-ID: MULTICLOUD-301
-rwxr-xr-xdeployments/start.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/deployments/start.sh b/deployments/start.sh
index 49f1bfbb..da2eacee 100755
--- a/deployments/start.sh
+++ b/deployments/start.sh
@@ -15,6 +15,7 @@ source /etc/environment
k8s_path="$(git rev-parse --show-toplevel)"
export GOPATH=$k8s_path
+export IMAGE_NAME="nexus3.onap.org:10003/onap/multicloud/k8s"
export CSAR_DIR=/opt/csar
export KUBE_CONFIG_DIR=/opt/kubeconfig
@@ -24,7 +25,7 @@ export PLUGINS_DIR=$k8s_path/src/k8splugin/plugins
echo "Starting consul services"
docker-compose kill
docker-compose up -d consul
-export DATABASE_IP=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' deployments_consul_1)
+export DATABASE_IP=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(docker ps -aqf "name=consul"))
export no_proxy=$no_proxy,$DATABASE_IP
export NO_PROXY=$NO_PROXY,$DATABASE_IP