summaryrefslogtreecommitdiffstats
path: root/tca-cdap-container
diff options
context:
space:
mode:
authorLusheng Ji <lji@research.att.com>2018-03-28 07:38:05 -0700
committerLusheng Ji <lji@research.att.com>2018-03-28 07:38:14 -0700
commit42014650de4ec32155b663594dee8cc0b066f6a9 (patch)
tree4b2a0f528604b70ef4e44c1b04ac0c34dbb84b5c /tca-cdap-container
parent230ae894c1b2f489e31d6a0d9f7db99cf6b65cbe (diff)
Change how to fetch TCA jar
Issue-ID: DCAEGEN2-357 Change-Id: I0edaf2cbdea6b98ef438b03e8f400ca05090b052 Signed-off-by: Lusheng Ji <lji@research.att.com>
Diffstat (limited to 'tca-cdap-container')
-rw-r--r--tca-cdap-container/Dockerfile5
-rwxr-xr-xtca-cdap-container/get-tca.sh16
2 files changed, 19 insertions, 2 deletions
diff --git a/tca-cdap-container/Dockerfile b/tca-cdap-container/Dockerfile
index f5e70c8..2e4f8ca 100644
--- a/tca-cdap-container/Dockerfile
+++ b/tca-cdap-container/Dockerfile
@@ -17,8 +17,9 @@
FROM caskdata/cdap-standalone:4.1.2
RUN apt-get update
-RUN apt-get install -y netcat jq
-ADD https://nexus.onap.org/content/repositories/snapshots/org/onap/dcaegen2/analytics/tca/dcae-analytics-cdap-tca/2.2.0-SNAPSHOT/dcae-analytics-cdap-tca-2.2.0-20180320.190629-1.jar /opt/tca/dcae-analytics-cdap-tca-2.2.0.jar
+RUN apt-get install -y netcat jq wget
+COPY get-tca.sh /opt/tca/get-tca.sh
+RUN /opt/tca/get-tca.sh
COPY tca_app_config.json /opt/tca/tca_app_config.json
COPY tca_app_preferences.json /opt/tca/tca_app_preferences.json
COPY restart.sh /opt/tca/restart.sh
diff --git a/tca-cdap-container/get-tca.sh b/tca-cdap-container/get-tca.sh
new file mode 100755
index 0000000..2a9cf62
--- /dev/null
+++ b/tca-cdap-container/get-tca.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+PROTO='https'
+NEXUSREPO='nexus.onap.org'
+REPO='snapshots'
+GROUPID='org.onap.dcaegen2.analytics.tca'
+ARTIFACTID='dcae-analytics-tca'
+VERSION='2.2.0-SNAPSHOT'
+
+URL="${PROTO}://${NEXUSREPO}/service/local/repositories/${REPO}/content/${GROUPID//.//}/${ARTIFACTID}/${VERSION}/maven-metadata.xml"
+VT=$(wget --no-check-certificate -O- $URL | grep -m 1 \<value\> | sed -e 's/<value>\(.*\)<\/value>/\1/' | sed -e 's/ //g')
+
+URL="${PROTO}://${NEXUSREPO}/service/local/repositories/${REPO}/content/${GROUPID//.//}/${ARTIFACTID}/${VERSION}/${ARTIFACTID}-${VT}.jar"
+#wget --no-check-certificate "${URL}" -O "/opt/tca/${ARTIFACTID}-${VERSION%-SNAPSHOT}.jar"
+wget --no-check-certificate "${URL}" -O "${ARTIFACTID}-${VERSION%-SNAPSHOT}.jar"
+