惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
T
Tailwind CSS Blog
博客园_首页
博客园 - 司徒正美
Google DeepMind News
Google DeepMind News
Hugging Face - Blog
Hugging Face - Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
V2EX
J
Java Code Geeks
量子位
D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
C
Check Point Blog
V
Visual Studio Blog
H
Help Net Security
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta

博客园 - nasdaqhe

Frida 使用 Android https 抓包 Android 解包重签名打包 centos7 docker 安装及配置 CentOS 6 升级 curl Mac 下编译安装 php-5.6 ubuntu+php5-fpm 下安装 memcached PHP扩展 cmd下使用telnet连接到memcached服务器操作 Lucence.Net 2.9.3 日期范围搜索 SQL语句优化一例 row_number not in or flickr head中用到的标签 - nasdaqhe - 博客园 判断中文是否UTF8编码 MSSQL备忘 新浪微博产品图 (Vincent.H手笔) MindManage HTML5学习资料整理 ubuntu备忘 const 与 readonly ubuntu 10.04 安装 oracle11g VS2010 .NET 4学习资料整理
云效流水线部署ack
nasdaqhe · 2021-08-24 · via 博客园 - nasdaqhe

Posted on 2021-08-24 15:11  nasdaqhe  阅读(138)  评论()    收藏  举报

普通项目:

 

微服务:

 

declare -A service_name_map=(
["hoho-cloud-gateway"]="https://cs.console.aliyun.com/hook/trigger?token=w"
["hoho-common-message"]="https://cs.console.aliyun.com/hook/trigger?token=4"
["hoho-service-auth"]="https://cs.console.aliyun.com/hook/trigger?token=I"
["hoho-service-sysdata"]="https://cs.console.aliyun.com/hook/trigger?token=1"
["hoho-service-user"]="https://cs.console.aliyun.com/hook/trigger?token=8"
["hoho-service-game"]="https://cs.console.aliyun.com/hook/trigger?token=k"
["hoho-service-relationship"]="https://cs.console.aliyun.com/hook/trigger?token=o"
["hoho-service-content"]="https://cs.console.aliyun.com/hook/trigger?token=I"
["hoho-service-sns"]="https://cs.console.aliyun.com/hook/trigger?token=4"
["hoho-service-search"]="https://cs.console.aliyun.com/hook/trigger?token=uo"
["hoho-service-portal"]="https://cs.console.aliyun.com/hook/trigger?token=Y"
["hoho-api-app"]="https://cs.console.aliyun.com/hook/trigger?token=k"
["hoho-api-mng"]="https://cs.console.aliyun.com/hook/trigger?token=M"
["hoho-cloud-scheduler"]="https://cs.console.aliyun.com/hook/trigger?token=c"
["hoho-service-trade"]="https://cs.console.aliyun.com/hook/trigger?token=k"
)

for service_name in $DEPLOY_LIST ; do
    echo "重新部署:${service_name}"
    curl ${service_name_map[$service_name]}
done