aboutsummaryrefslogtreecommitdiffstats
path: root/etc_upload/upload_config_for_ph_in_docker.sh
diff options
context:
space:
mode:
authorAlex Shatov <alexs@att.com>2017-09-12 13:00:25 -0400
committerAlex Shatov <alexs@att.com>2017-09-12 13:00:25 -0400
commit42a989a6b9b6388947da6fc273728a24c19fa686 (patch)
tree9d1dfc98ddd56fe058c030f9b4b8ce117aa16717 /etc_upload/upload_config_for_ph_in_docker.sh
parentfe9c74b9933745144bfd8134bc96fd77fa3291f8 (diff)
1.0.0 and policy API to deployment-handler
* policy API to deployment-handler /policy * removed pycrypto of config - the same way as other apps * simple upload of config to consul - curl * preparation for policy-handler blueprint Change-Id: I424a1ded0795562ea36b5409304cbb8b5a7e8a24 Issue-Id: DCAEGEN2-62 Signed-off-by: Alex Shatov <alexs@att.com>
Diffstat (limited to 'etc_upload/upload_config_for_ph_in_docker.sh')
-rw-r--r--etc_upload/upload_config_for_ph_in_docker.sh38
1 files changed, 5 insertions, 33 deletions
diff --git a/etc_upload/upload_config_for_ph_in_docker.sh b/etc_upload/upload_config_for_ph_in_docker.sh
index e37215e..1eb0364 100644
--- a/etc_upload/upload_config_for_ph_in_docker.sh
+++ b/etc_upload/upload_config_for_ph_in_docker.sh
@@ -31,39 +31,11 @@ if [[ -n ${DOCKER_HOST} ]]; then
DOCKER_HOSTNAME=${DOCKER_HOST//tcp:/}
DOCKER_HOSTNAME=${DOCKER_HOSTNAME//:*[0-9]/}
DOCKER_HOSTNAME=${DOCKER_HOSTNAME//\//}
- echo "${APPNAME} on DOCKER_HOSTNAME=${DOCKER_HOSTNAME}"
- export HOSTNAME=${DOCKER_HOSTNAME}
-
- # replace CONSUL_IP with docker-host-ip if consul-agent is local
- CONSUL_HOST=${HOSTNAME}
- CONSUL_IP=$(host ${CONSUL_HOST} | awk '/has address/ { print $4 ; exit }')
-
- echo "starting ${APPNAME} on HOSTNAME=${HOSTNAME} CONSUL_HOST=${CONSUL_HOST} CONSUL_IP=${CONSUL_IP}"
-
- docker run --name ${APPNAME} -d \
- -e HOSTNAME \
- --add-host consul:${CONSUL_IP} \
- ${APPNAME}
+ CONSUL_HOST=${DOCKER_HOSTNAME}
else
- export HOSTNAME=$(hostname --fqdn)
-
- # replace CONSUL_IP with docker-host-ip if consul-agent is local
- CONSUL_HOST=${HOSTNAME}
- CONSUL_IP=$(host ${CONSUL_HOST} | awk '/has address/ { print $4 ; exit }')
-
- echo "starting ${APPNAME} on HOSTNAME=${HOSTNAME} CONSUL_HOST=${CONSUL_HOST} CONSUL_IP=${CONSUL_IP}"
-
- BASEDIR=$(pwd)
- TARGETDIR=/opt/app/${APPNAME}
+ CONSUL_HOST=devcnsl00.dcae.sic.research.att.com
+fi
- mkdir -p ${BASEDIR}/logs
- mkdir -p ${BASEDIR}/etc_upload/logs
+echo "uploading etc_upload/config.json for ${APPNAME} to CONSUL_HOST=${CONSUL_HOST}"
- docker run --name ${APPNAME} -d \
- -e HOSTNAME \
- --add-host consul:${CONSUL_IP} \
- -v ${BASEDIR}/etc:${TARGETDIR}/etc \
- -v ${BASEDIR}/etc_upload:${TARGETDIR}/etc_upload \
- -v ${BASEDIR}/etc_upload/logs:${TARGETDIR}/logs \
- ${APPNAME}
-fi
+curl -X PUT -H 'Content-Type: application/json' --data-binary "$(cat etc_upload/config.json)" http://${CONSUL_HOST}:8500/v1/kv/${APPNAME} \ No newline at end of file