File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,17 @@ while IFS= read -d $'\0' -r dir; do
3838 cd " ${builddir} "
3939 log " Building: ${image} "
4040 docker build -t " ${image} " .
41- docker build -t " ${image} -native-grpc-probes" . --target without-grpc-health-probe-bin
4241
4342 log " Pushing: ${image} "
4443 docker push " ${image} "
45- docker push " ${image} -native-grpc-probes"
44+
45+ if [ $svcname != " frontend" ] && [ $svcname != " loadgenerator" ]
46+ then
47+ log " Building: ${image} -native-grpc-probes"
48+ docker build -t " ${image} -native-grpc-probes" . --target without-grpc-health-probe-bin
49+ log " Pushing: ${image} -native-grpc-probes"
50+ docker push " ${image} -native-grpc-probes"
51+ fi
4652 )
4753done < <( find " ${SCRIPTDIR} /../src" -mindepth 1 -maxdepth 1 -type d -print0)
4854
You can’t perform that action at this time.
0 commit comments