Docker Zero Deployment and Secrets (一)
在本节中,主要介绍在Docker swarm中如何不中断应用高可靠性的情况下更新服务和stack.这也叫做zero downtime deployment.还有就是swam如何管理密钥,保证容器之间的通信是安全可靠的。
一. Zero downtime deployment
1. 比较常见的更新方法
(1) Rolling updates
(2) Blue-green deployments
(3)Canary releases
2. Rolling updates
在关键的应用中,每个应用的服务都运行多个复本。举个例子,假如我们有三个复本实例,认为至少得有两个实例在同一时间运行,假如有100个实例复本,至少得有90实例复本在同一时间要有效。所以我们可以定义同时更新的实例有多少 个。在第二种假设的情况中,就是同时更新实例数为10个。
说白话一点就是假如一个应用有100个实例容器提供服务,那么我们每次更新10个,这样轮着更新。直至100个更新完,在这期间不停止服务。
注意:在署在多个节点的服务进行rolling updates时,最好是无状态的服务,假如是有状态的服务,建议调整方法,这个方法可能不太适合。
(1)定义stack文件 ,内容如下:
xiodi@c720131:~/docker$ cat stack.yaml
version: "3.5"
services:
web:
image: nginx:1.12-alpine
ports:
- 80:80
deploy:
replicas: 10
update_config:
parallelism: 2
delay: 10s
(2)使用stack文件部署服务
xiodi@c720131:~/docker$ sudo docker stack deploy -c stack.yaml web
[sudo] password for xiodi:
Creating network web_default
Creating service web_web
(3)在服务部署后,使用下面的命令进行服务的监控
xiodi@c720131:~/docker$ sudo watch docker stack ps web
ID NAME IMAGE NODE DESIRED STATE CURRENT STATE ERROR PORTS
tsmz1yh1r8sq web_web.1 nginx:1.12-alpine c720131.xiodi.cn Running Running about a minute ago
9efbgiu8xfu6 web_web.2 nginx:1.12-alpine c720132.xiodi.cn Running Running about a minute ago
j3ka20b1330l web_web.3 nginx:1.12-alpine c720132.xiodi.cn Running Running about a minute ago
t96zpspkrdll web_web.4 nginx:1.12-alpine c720132.xiodi.cn Running Running about a minute ago
q7vgy2b5ripc web_web.5 nginx:1.12-alpine ubuntu Running Running about a minute ago
lkrxparc8y5x web_web.6 nginx:1.12-alpine c720131.xiodi.cn Running Running about a minute ago
0nw5y74ow3vc web_web.7 nginx:1.12-alpine ubuntu Running Running about a minute ago
wpsn04qxzy0a web_web.8 nginx:1.12-alpine c720131.xiodi.cn Running Running about a minute ago
qcernrxbachq web_web.9 nginx:1.12-alpine ubuntu Running Running about a minute ago
kd5dbexndk61 web_web.10 nginx:1.12-alpine c720132.xiodi.cn Running Running about a minute ago
(4)更新web服务,然后观察结果 。
(5)更新完成后,显示结果如下
xiodi@c720131:~/docker$ sudo docker stack ps web
ID NAME IMAGE NODE DESIRED STATE CURRENT STATE ERROR PORTS
y3e6nsy7qa0a web_web.1 nginx:1.13-alpine c720131.xiodi.cn Running Running 3 minutes ago
tsmz1yh1r8sq \_ web_web.1 nginx:1.12-alpine c720131.xiodi.cn Shutdown Shutdown 3 minutes ago
zkmadin1p6ir web_web.2 nginx:1.13-alpine c720132.xiodi.cn Running Running 3 minutes ago
9efbgiu8xfu6 \_ web_web.2 nginx:1.12-alpine c720132.xiodi.cn Shutdown Shutdown 3 minutes ago
m4xhcns8j57p web_web.3 nginx:1.13-alpine ubuntu Running Running 4 minutes ago
j3ka20b1330l \_ web_web.3 nginx:1.12-alpine c720132.xiodi.cn Shutdown Shutdown 4 minutes ago
m884or5qpns4 web_web.4 nginx:1.13-alpine c720132.xiodi.cn Running Running 3 minutes ago
t96zpspkrdll \_ web_web.4 nginx:1.12-alpine c720132.xiodi.cn Shutdown Shutdown 3 minutes ago
rlzj3jqdz6zc web_web.5 nginx:1.13-alpine c720132.xiodi.cn Running Running 3 minutes ago
q7vgy2b5ripc \_ web_web.5 nginx:1.12-alpine ubuntu Shutdown Shutdown 3 minutes ago
ntzku0o2fdh9 web_web.6 nginx:1.13-alpine c720131.xiodi.cn Running Running 3 minutes ago
lkrxparc8y5x \_ web_web.6 nginx:1.12-alpine c720131.xiodi.cn Shutdown Shutdown 3 minutes ago
l2j1mml2c21e web_web.7 nginx:1.13-alpine ubuntu Running Running 4 minutes ago
0nw5y74ow3vc \_ web_web.7 nginx:1.12-alpine ubuntu Shutdown Shutdown 4 minutes ago
tdvpcny3zjf8 web_web.8 nginx:1.13-alpine c720131.xiodi.cn Running Running 3 minutes ago
wpsn04qxzy0a \_ web_web.8 nginx:1.12-alpine c720131.xiodi.cn Shutdown Shutdown 3 minutes ago
nkkjxxq9xos1 web_web.9 nginx:1.13-alpine ubuntu Running Running 3 minutes ago
qcernrxbachq \_ web_web.9 nginx:1.12-alpine ubuntu Shutdown Shutdown 3 minutes ago
px1bxz2omzfq web_web.10 nginx:1.13-alpine c720132.xiodi.cn Running Running 3 minutes ago
kd5dbexndk61 \_ web_web.10 nginx:1.12-alpine c720132.xiodi.cn Shutdown Shu
(5)执行下列命令,移除stack.
xiodi@c720131:~/docker$ sudo docker stack rm web
Removing service web_web
Removing network web_default
(6)如果部署单一的服务的话,可以使用以下命令设置新的一些rolling update值。
xiodi@c720131:~/docker$ sudo docker service create --name web \
> --replicas 10 \
> --update-parallelism 2 \
> --update-delay 10s \
> nginx:alpine
Docker Zero Deployment and Secrets (一)的更多相关文章
- Docker Zero Deployment and Secrets (二)
一. 健康检测: (1)定义检测信息如下(案例,在Dockerfile中定义) FROM alpine:3.6 ... HEALTHCHECK --interval=30s \ --timeo ...
- Kubernetes的控制器之Deployment的定义
Deploy 的控制器定义参数介绍 [root@master manifests]# kubectl explain deploy KIND: Deployment VERSION: extensio ...
- SpringCloud微服务实战——搭建企业级开发框架(三十五):SpringCloud + Docker + k8s实现微服务集群打包部署-集群环境部署
一.集群环境规划配置 生产环境不要使用一主多从,要使用多主多从.这里使用三台主机进行测试一台Master(172.16.20.111),两台Node(172.16.20.112和172.16.20.1 ...
- Docker Resources
Menu Main Resources Books Websites Documents Archives Community Blogs Personal Blogs Videos Related ...
- Docker下安装Jenkins
Docker安装参见:https://www.cnblogs.com/hackyo/p/9280042.html 安装Jenkins: docker run \ -u root \ --rm \ -d ...
- [转帖]Docker的数据管理(volume/bind mount/tmpfs)
Docker(十五)-Docker的数据管理(volume/bind mount/tmpfs) https://www.cnblogs.com/zhuochong/p/10069719.html do ...
- docker的安装及项目部署
Making Docker and Deployment Process Step: set up your docker environment build a image of activeMQ ...
- Docker(十五)-Docker的数据管理(volume/bind mount/tmpfs)
Docker提供了三种不同的方式用于将宿主的数据挂载到容器中:volumes,bind mounts,tmpfs volumes.当你不知道该选择哪种方式时,记住,volumes总是正确的选择. vo ...
- Docker的数据管理(volume/bind mount/tmpfs)
Docker提供了三种不同的方式用于将宿主的数据挂载到容器中:volumes,bind mounts,tmpfs volumes.当你不知道该选择哪种方式时,记住,volumes总是正确的选择. vo ...
随机推荐
- docker-api
__author__ = 'zxp' import docker import sys class DockerManager_Slave(object): def __init__(self): s ...
- 「Linux+Django」Django+CentOs7+uwsgi+nginx部署网站记录
转自:http://www.usday.cn/blog/51 部署前的准备: 1. 在本地可以运行的django项目 2. 一台云服务器,这里选用Centos系统 开始部署: 首先在本地导出项目需要的 ...
- u3d图片转视频
c#代码://将截图生成视频public static void createVideo(){ ProcessStartInfo psi = new ProcessStartInfo(); psi.F ...
- Java中String的替换函数:replace与replaceAll的区别
例如有如下x的字符串 String x = "[kllkklk\\kk\\kllkk]"; 要将里面的"kk"替换为++,可以使用两种方法得到相同的结果 r ...
- springboot创建maven多模块项目
SpringBoot创建maven多模块项目 项目结构 该项目名称为springboot-maven-multi,由springboot-maven-multi.user-dao.user-domai ...
- 使用RVM轻松部署Ruby环境
Ruby用得不多,但发现有业务需要部署指定的版本和插件.起初找了一些Fedora的src.rpm重新打包,发现依赖问题比较多,最终还是费劲的把el6的包编出来了. 不巧今天又有业务要求el5的包,原本 ...
- 排序构造 GYM 101149 F - The Weakest Sith
题目链接:http://codeforces.com/gym/101149/my 题目大意:给你n个人,他们有成绩a,b,c.一个人如果两门课比另外一个人高,那么这个人就比那个人厉害.问,是否存在一个 ...
- 51nod 1161 Partial Sums
给出一个数组A,经过一次处理,生成一个数组S,数组S中的每个值相当于数组A的累加,比如:A = {1 3 5 6} => S = {1 4 9 15}.如果对生成的数组S再进行一次累加操作,{1 ...
- c++树,知道前序和中序求后序遍历
经常有面试题就是知道一棵树的前序遍历和中序遍历让你写出后序遍历,这个慢慢画是能画出来的,但是要很快的弄出来还是要懂原理. 首先说一下三种遍历:所谓的前序后序和中序都是遍历时遍历根节点的顺序.子树的话依 ...
- 【leetcode 简单】 第七题 合并两个有序链表
将两个有序链表合并为一个新的有序链表并返回.新链表是通过拼接给定的两个链表的所有节点组成的. 示例: 输入:1->2->4, 1->3->4 输出:1->1->2- ...