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

推荐订阅源

腾讯CDC
Schneier on Security
Schneier on Security
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
A
About on SuperTechFans
Recorded Future
Recorded Future
Recent Announcements
Recent Announcements
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub Blog
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MyScale Blog
MyScale Blog
V2EX - 技术
V2EX - 技术
N
Netflix TechBlog - Medium
F
Fortinet All Blogs
V
Visual Studio Blog
Martin Fowler
Martin Fowler
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
The Exploit Database - CXSecurity.com
F
Full Disclosure
Scott Helme
Scott Helme
H
Heimdal Security Blog
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
Cyberwarzone
Cyberwarzone
Application and Cybersecurity Blog
Application and Cybersecurity Blog
V
Vulnerabilities – Threatpost
Blog — PlanetScale
Blog — PlanetScale
Security Latest
Security Latest
WordPress大学
WordPress大学
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Troy Hunt's Blog
S
SegmentFault 最新的问题
Forbes - Security
Forbes - Security
Jina AI
Jina AI
S
Securelist
小众软件
小众软件
Simon Willison's Weblog
Simon Willison's Weblog
J
Java Code Geeks
AWS News Blog
AWS News Blog
N
News and Events Feed by Topic
博客园 - 三生石上(FineUI控件)
量子位

博客园 - 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