summaryrefslogtreecommitdiffstats
path: root/sms-service/bin
diff options
context:
space:
mode:
authorKiran Kamineni <kiran.k.kamineni@intel.com>2018-04-05 11:54:20 -0700
committerKiran Kamineni <kiran.k.kamineni@intel.com>2018-04-05 12:40:56 -0700
commitc4150670d35e36457ff5f793accae615627e55c8 (patch)
treed1fbc3c5e20d48c4e11038e31a226c79650272df /sms-service/bin
parent978daf3d407d1d7991946d97dbb48011e7b4f6bc (diff)
renaming folder to match go executable
Renaming folder from smsquorum to quorumclient Added quorumclient build as part of the makefile Will upload another patch in ci-management that will call the new parent makefile Issue-ID: AAF-213 Change-Id: Ib85ac6b9dc454fc1447cf2221a555d7a7552efa5 Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'sms-service/bin')
-rwxr-xr-xsms-service/bin/build_quorum_image.sh4
-rw-r--r--sms-service/bin/quorumdockerfile8
2 files changed, 6 insertions, 6 deletions
diff --git a/sms-service/bin/build_quorum_image.sh b/sms-service/bin/build_quorum_image.sh
index c154764..16bb378 100755
--- a/sms-service/bin/build_quorum_image.sh
+++ b/sms-service/bin/build_quorum_image.sh
@@ -8,7 +8,7 @@ BUILD_ARGS="--no-cache"
ORG="onap"
VERSION="1.1.0"
PROJECT="aaf"
-IMAGE="smsquorum"
+IMAGE="smsquorumclient"
DOCKER_REPOSITORY="nexus3.onap.org:10003"
IMAGE_NAME="${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/${IMAGE}"
TIMESTAMP=$(date +"%Y%m%dT%H%M%S")
@@ -21,7 +21,7 @@ if [ $HTTPS_PROXY ]; then
fi
#Need to create makefile
function generate_binary {
- pushd ../src/smsquorum
+ pushd ../src/quorumclient
make build
popd
cp ../target/quorumclient .
diff --git a/sms-service/bin/quorumdockerfile b/sms-service/bin/quorumdockerfile
index 2e1a191..08a6606 100644
--- a/sms-service/bin/quorumdockerfile
+++ b/sms-service/bin/quorumdockerfile
@@ -1,9 +1,9 @@
FROM alpine:3.7
-LABEL name="aaf-sms"
+LABEL name="aaf-sms-quorumclient"
LABEL version=1.0.0
LABEL maintainer="Girish Havaldar <hg0071052@techmahindra.com>"
-ADD quorumclient /smsquorum/bin/quorumclient
-RUN chmod +x /smsquorum/bin/quorumclient
-ENTRYPOINT ["/smsquorum/bin/quorumclient"]
+ADD quorumclient /quorumclient/bin/quorumclient
+RUN chmod +x /quorumclient/bin/quorumclient
+ENTRYPOINT ["/quorumclient/bin/quorumclient"]