我正在研究部署到Azure Service Fabric的Jenkins管道。
当前使用
RESULT=""
while [ "$RESULT" != "RollingForwardCompleted" ]
do
RESULT=`sfctl application upgrade-status --application-id APPLICATION-ID|jq -r '.upgradeState'`
echo "`date +%Y-%m-%d-%H-%M-%S`: ${RESULT}"
done
获取目标功能。
您是否有内置功能可以帮助您解决此问题?类似于aws cloudformation deploy
。