Add config agent core to dpush 09/60609/1
authorInstrumental <jonathan.gathman@att.com>
Tue, 14 Aug 2018 20:13:02 +0000 (15:13 -0500)
committerInstrumental <jonathan.gathman@att.com>
Tue, 14 Aug 2018 20:13:12 +0000 (15:13 -0500)
Issue-ID: AAF-433
Change-Id: I0ed47de5c48edd6494673587f24881f40f4ed232
Signed-off-by: Instrumental <jonathan.gathman@att.com>
auth/docker/dpush.sh

index 6beae85..0cfd1fc 100644 (file)
@@ -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