From: Instrumental Date: Tue, 14 Aug 2018 20:13:02 +0000 (-0500) Subject: Add config agent core to dpush X-Git-Tag: 2.1.2~99 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F09%2F60609%2F1;p=aaf%2Fauthz.git Add config agent core to dpush Issue-ID: AAF-433 Change-Id: I0ed47de5c48edd6494673587f24881f40f4ed232 Signed-off-by: Instrumental --- diff --git a/auth/docker/dpush.sh b/auth/docker/dpush.sh index 6beae857..0cfd1fc1 100644 --- a/auth/docker/dpush.sh +++ b/auth/docker/dpush.sh @@ -5,7 +5,7 @@ . ./d.props if ["$1" == ""]; then - AAF_COMPONENTS=`ls ../aaf_*HOT/bin | grep -v '\.'` + AAF_COMPONENTS="config agent core `ls ../aaf_*HOT/bin | grep -v '\.'`" else AAF_COMPONENTS=$1 fi @@ -14,5 +14,4 @@ for AAF_COMPONENT in ${AAF_COMPONENTS}; do # docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${OLD_VERSION} docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} # docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${NEW_VERSION} - done