一、nginx保证有两个版本

1、查看当前容器运行nginx版本

[root@k8s-master ~]# kubectl get pod  -o wide
NAME READY STATUS RESTARTS AGE IP NODE
myweb-7w38b 1/1 Running 0 4h 172.16.10.4 k8s-node1
myweb-btflm 1/1 Running 0 4h 172.16.48.4 k8s-node2
myweb-cbt47 1/1 Running 0 4h 172.16.48.3 k8s-node2
myweb-rt3b9 1/1 Running 0 4h 172.16.10.3 k8s-node1
nginx 1/1 Running 0 6h 172.16.10.2 k8s-node1
nginx2 1/1 Running 0 5h 172.16.48.2 k8s-node2
[root@k8s-master ~]# curl -I 172.16.10.2
HTTP/1.1 200 OK
Server: nginx/1.15.8
Date: Sun, 20 Jan 2019 11:31:17 GMT
Content-Type: text/html
Content-Length: 612
Last-Modified: Tue, 25 Dec 2018 09:56:47 GMT
Connection: keep-alive
ETag: "5c21fedf-264"
Accept-Ranges: bytes

2、下载nginx1.13

[root@k8s-master ~]# docker pull nginx:1.13

3、上传到私有仓库

[root@k8s-master ~]# docker tag docker.io/nginx:latest 10.0.128.0:5000/nginx:1.15
[root@k8s-master ~]# docker tag docker.io/nginx:1.13 10.0.128.0:5000/nginx:1.13
[root@k8s-master ~]# docker push 10.0.128.0:5000/nginx:1.13
The push refers to a repository [10.0.128.0:5000/nginx]
7ab428981537: Pushed
82b81d779f83: Pushed
d626a8ad97a1: Pushed
1.13: digest: sha256:e4f0474a75c510f40b37b6b7dc2516241ffa8bde5a442bde3d372c9519c84d90 size: 948
[root@k8s-master ~]# docker push 10.0.128.0:5000/nginx:1.15
The push refers to a repository [10.0.128.0:5000/nginx]
b7efe781401d: Layer already exists
c9c2a3696080: Layer already exists
7b4e562e58dc: Layer already exists
1.15: digest: sha256:e2847e35d4e0e2d459a7696538cbfea42ea2d3b8a1ee8329ba7e68694950afd3 size: 948
[root@k8s-master ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
docker.io/registry latest 33fbbf4a24e5 2 weeks ago 24.17 MB
10.0.128.0:5000/busybox latest 3a093384ac30 2 weeks ago 1.199 MB
docker.io/busybox latest 3a093384ac30 2 weeks ago 1.199 MB
10.0.128.0:5000/nginx 1.15 7042885a156a 3 weeks ago 109.2 MB
10.0.128.0:5000/nginx latest 7042885a156a 3 weeks ago 109.2 MB
docker.io/nginx latest 7042885a156a 3 weeks ago 109.2 MB
10.0.128.0:5000/nginx 1.13 ae513a47849c 8 months ago 108.9 MB
docker.io/nginx 1.13 ae513a47849c 8 months ago 108.9 MB
10.0.128.0:5000/pod-infrastructure latest 34d3450d733b 24 months ago 205 MB
docker.io/tianyebj/pod-infrastructure latest 34d3450d733b 24 months ago 205 MB

4、私有仓库查看

[root@k8s-master ~]# ls /opt/myregistry/docker/registry/v2/repositories/nginx/_manifests/tags/
1.13 1.15 latest

二、滚动升级

1、删除所有pod和rc

[root@k8s-master ~]# kubectl get all
NAME DESIRED CURRENT READY AGE
rc/myweb 5 5 5 5h NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
svc/kubernetes 10.254.0.1 <none> 443/TCP 21h NAME READY STATUS RESTARTS AGE
po/myweb-7w38b 1/1 Running 0 5h
po/myweb-btflm 1/1 Running 0 5h
po/myweb-cbt47 1/1 Running 0 5h
po/myweb-rt3b9 1/1 Running 0 5h
po/nginx 1/1 Running 0 6h
po/nginx2 1/1 Running 0 5h
[root@k8s-master ~]# kubectl delete pod nginx
pod "nginx" deleted

2、创建升级rc

[root@k8s-master ~]# cat myweb-rcv1.yml
apiVersion: v1
kind: ReplicationController
metadata:
name: myweb
spec:
replicas: 3
selector:
app: myweb
template:
metadata:
labels:
app: myweb
spec:
containers:
- name: myweb
image: 10.0.128.0:5000/nginx:1.13
ports:
- containerPort: 80 [root@k8s-master ~]# cat myweb-rcv2.yml
apiVersion: v1
kind: ReplicationController
metadata:
name: myweb2
spec:
replicas: 3
selector:
app: myweb2
template:
metadata:
labels:
app: myweb2
spec:
containers:
- name: myweb2
image: 10.0.128.0:5000/nginx:1.15
ports:
- containerPort: 80

3、执行升级

[root@k8s-master ~]# kubectl rolling-update myweb -f myweb-rcv2.yml --update-period=20s
Created myweb2
Scaling up myweb2 from 0 to 3, scaling down myweb from 3 to 0 (keep 3 pods available, don't exceed 4 pods)
Scaling myweb2 up to 1
Scaling myweb down to 2
Scaling myweb2 up to 2
Scaling myweb down to 1
Scaling myweb2 up to 3
Scaling myweb down to 0
Update succeeded. Deleting myweb
replicationcontroller "myweb" rolling updated to "myweb2"

4、滚动升级过程

[root@k8s-master ~]# kubectl get all
NAME DESIRED CURRENT READY AGE
rc/myweb 2 2 2 20m
rc/myweb2 2 2 2 25s NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
svc/kubernetes 10.254.0.1 <none> 443/TCP 21h NAME READY STATUS RESTARTS AGE
po/myweb-3hg1r 1/1 Running 0 20m
po/myweb-hzxcp 1/1 Running 0 20m
po/myweb2-rhgq3 1/1 Running 0 5s
po/myweb2-xdtrp 1/1 Running 0 25s
[root@k8s-master ~]# kubectl get all
NAME DESIRED CURRENT READY AGE
rc/myweb 2 2 2 20m
rc/myweb2 2 2 2 28s NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
svc/kubernetes 10.254.0.1 <none> 443/TCP 21h NAME READY STATUS RESTARTS AGE
po/myweb-3hg1r 1/1 Running 0 20m
po/myweb-hzxcp 1/1 Running 0 20m
po/myweb2-rhgq3 1/1 Running 0 8s
po/myweb2-xdtrp 1/1 Running 0 28s
[root@k8s-master ~]# kubectl get all
NAME DESIRED CURRENT READY AGE
rc/myweb 2 2 2 20m
rc/myweb2 2 2 2 30s NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
svc/kubernetes 10.254.0.1 <none> 443/TCP 21h NAME READY STATUS RESTARTS AGE
po/myweb-3hg1r 1/1 Running 0 20m
po/myweb-hzxcp 1/1 Running 0 20m
po/myweb2-rhgq3 1/1 Running 0 10s
po/myweb2-xdtrp 1/1 Running 0 30s
[root@k8s-master ~]# kubectl get all
NAME DESIRED CURRENT READY AGE
rc/myweb 1 1 1 20m
rc/myweb2 2 2 2 40s NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
svc/kubernetes 10.254.0.1 <none> 443/TCP 21h NAME READY STATUS RESTARTS AGE
po/myweb-3hg1r 1/1 Running 0 20m
po/myweb-hzxcp 1/1 Terminating 0 20m
po/myweb2-khl9t 0/1 Pending 0 0s
po/myweb2-rhgq3 1/1 Running 0 20s
po/myweb2-xdtrp 1/1 Running 0 41s
[root@k8s-master ~]# kubectl get all
NAME DESIRED CURRENT READY AGE
rc/myweb 1 1 1 20m
rc/myweb2 3 3 3 46s NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
svc/kubernetes 10.254.0.1 <none> 443/TCP 21h NAME READY STATUS RESTARTS AGE
po/myweb-3hg1r 1/1 Running 0 20m
po/myweb2-khl9t 1/1 Running 0 6s
po/myweb2-rhgq3 1/1 Running 0 26s
po/myweb2-xdtrp 1/1 Running 0 46s
[root@k8s-master ~]# kubectl get all
NAME DESIRED CURRENT READY AGE
rc/myweb 1 1 1 20m
rc/myweb2 3 3 3 50s NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
svc/kubernetes 10.254.0.1 <none> 443/TCP 21h NAME READY STATUS RESTARTS AGE
po/myweb-3hg1r 1/1 Running 0 20m
po/myweb2-khl9t 1/1 Running 0 10s
po/myweb2-rhgq3 1/1 Running 0 30s
po/myweb2-xdtrp 1/1 Running 0 50s
[root@k8s-master ~]# kubectl get all
NAME DESIRED CURRENT READY AGE
rc/myweb 1 1 1 20m
rc/myweb2 3 3 3 53s NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
svc/kubernetes 10.254.0.1 <none> 443/TCP 21h NAME READY STATUS RESTARTS AGE
po/myweb-3hg1r 1/1 Running 0 20m
po/myweb2-khl9t 1/1 Running 0 13s
po/myweb2-rhgq3 1/1 Running 0 33s
po/myweb2-xdtrp 1/1 Running 0 53s
[root@k8s-master ~]# kubectl get all
NAME DESIRED CURRENT READY AGE
rc/myweb 1 1 1 20m
rc/myweb2 3 3 3 57s NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
svc/kubernetes 10.254.0.1 <none> 443/TCP 21h NAME READY STATUS RESTARTS AGE
po/myweb-3hg1r 1/1 Running 0 20m
po/myweb2-khl9t 1/1 Running 0 17s
po/myweb2-rhgq3 1/1 Running 0 37s
po/myweb2-xdtrp 1/1 Running 0 57s
[root@k8s-master ~]# kubectl get all
NAME DESIRED CURRENT READY AGE
rc/myweb 0 0 0 21m
rc/myweb2 3 3 3 1m NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
svc/kubernetes 10.254.0.1 <none> 443/TCP 21h NAME READY STATUS RESTARTS AGE
po/myweb2-khl9t 1/1 Running 0 23s
po/myweb2-rhgq3 1/1 Running 0 43s
po/myweb2-xdtrp 1/1 Running 0 1m
[root@k8s-master ~]# kubectl get all
NAME DESIRED CURRENT READY AGE
rc/myweb2 3 3 3 1m NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
svc/kubernetes 10.254.0.1 <none> 443/TCP 21h NAME READY STATUS RESTARTS AGE
po/myweb2-khl9t 1/1 Running 0 29s
po/myweb2-rhgq3 1/1 Running 0 49s
po/myweb2-xdtrp 1/1 Running 0 1m

三、秒级回滚

1、执行回滚

[root@k8s-master ~]# kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE
myweb2-khl9t 1/1 Running 0 29m 172.16.10.2 k8s-node1
myweb2-rhgq3 1/1 Running 0 29m 172.16.10.3 k8s-node1
myweb2-xdtrp 1/1 Running 0 29m 172.16.48.3 k8s-node2
[root@k8s-master ~]# kubectl rolling-update myweb2 -f myweb-rcv1.yml --update-period=10s
Created myweb
Scaling up myweb from 0 to 3, scaling down myweb2 from 3 to 0 (keep 3 pods available, don't exceed 4 pods)
Scaling myweb up to 1
Scaling myweb2 down to 2
Scaling myweb up to 2
Scaling myweb2 down to 1
Scaling myweb up to 3
Scaling myweb2 down to 0
Update succeeded. Deleting myweb2
replicationcontroller "myweb2" rolling updated to "myweb"

2、回滚过程

[root@k8s-master ~]# kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE
myweb2-khl9t 1/1 Running 0 20m 172.16.10.2 k8s-node1
myweb2-rhgq3 1/1 Running 0 20m 172.16.10.3 k8s-node1
myweb2-xdtrp 1/1 Running 0 20m 172.16.48.3 k8s-node2
[root@k8s-master ~]# kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE
myweb-mnf7x 1/1 Running 0 4s 172.16.48.2 k8s-node2
myweb2-khl9t 1/1 Running 0 29m 172.16.10.2 k8s-node1
myweb2-rhgq3 1/1 Running 0 29m 172.16.10.3 k8s-node1
myweb2-xdtrp 1/1 Running 0 30m 172.16.48.3 k8s-node2
[root@k8s-master ~]# kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE
myweb-mnf7x 1/1 Running 0 6s 172.16.48.2 k8s-node2
myweb2-khl9t 1/1 Running 0 29m 172.16.10.2 k8s-node1
myweb2-rhgq3 1/1 Running 0 29m 172.16.10.3 k8s-node1
myweb2-xdtrp 1/1 Running 0 30m 172.16.48.3 k8s-node2
[root@k8s-master ~]# kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE
myweb-mnf7x 1/1 Running 0 7s 172.16.48.2 k8s-node2
myweb2-khl9t 1/1 Running 0 29m 172.16.10.2 k8s-node1
myweb2-rhgq3 1/1 Running 0 29m 172.16.10.3 k8s-node1
myweb2-xdtrp 1/1 Running 0 30m 172.16.48.3 k8s-node2
[root@k8s-master ~]# kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE
myweb-7m76h 1/1 Running 0 2s 172.16.10.2 k8s-node1
myweb-mnf7x 1/1 Running 0 12s 172.16.48.2 k8s-node2
myweb2-rhgq3 1/1 Running 0 29m 172.16.10.3 k8s-node1
myweb2-xdtrp 1/1 Running 0 30m 172.16.48.3 k8s-node2
[root@k8s-master ~]# kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE
myweb-7m76h 1/1 Running 0 5s 172.16.10.2 k8s-node1
myweb-mnf7x 1/1 Running 0 15s 172.16.48.2 k8s-node2
myweb2-rhgq3 1/1 Running 0 30m 172.16.10.3 k8s-node1
myweb2-xdtrp 1/1 Running 0 30m 172.16.48.3 k8s-node2
[root@k8s-master ~]# kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE
myweb-7m76h 1/1 Running 0 11s 172.16.10.2 k8s-node1
myweb-kzq8c 0/1 ContainerCreating 0 1s <none> k8s-node2
myweb-mnf7x 1/1 Running 0 21s 172.16.48.2 k8s-node2
myweb2-xdtrp 1/1 Running 0 30m 172.16.48.3 k8s-node2
[root@k8s-master ~]# kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE
myweb-7m76h 1/1 Running 0 14s 172.16.10.2 k8s-node1
myweb-kzq8c 1/1 Running 0 4s 172.16.48.4 k8s-node2
myweb-mnf7x 1/1 Running 0 24s 172.16.48.2 k8s-node2
myweb2-xdtrp 1/1 Running 0 30m 172.16.48.3 k8s-node2
[root@k8s-master ~]# kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE
myweb-7m76h 1/1 Running 0 24s 172.16.10.2 k8s-node1
myweb-kzq8c 1/1 Running 0 14s 172.16.48.4 k8s-node2
myweb-mnf7x 1/1 Running 0 34s 172.16.48.2 k8s-node2

kubernetes云平台管理实战: 滚动升级秒级回滚(六)的更多相关文章

  1. kubernetes云平台管理实战: 高级资源deployment-滚动升级(八)

    一.通过文件创建deployment 1.创建deployment文件 [root@k8s-master ~]# cat nginx_deploy.yml apiVersion: extensions ...

  2. kubernetes云平台管理实战:deployment通过标签管理pod(十)

    一.kubectl run命令拓展 1.RC创建 [root@k8s-master ~]# kubectl run web --generator=run/v1 --image=10.0.128.0: ...

  3. kubernetes云平台管理实战:如何创建deployment更好(九)

    一.文件创建带--record 1.文件 [root@k8s-master ~]# cat nginx_deploy.yml apiVersion: extensions/v1beta1 kind: ...

  4. kubernetes云平台管理实战:HPA水平自动伸缩(十一)

    一.自动伸缩 1.启动 [root@k8s-master ~]# kubectl autoscale deployment nginx-deployment --max=8 --min=2 --cpu ...

  5. kubernetes云平台管理实战: 集群部署(一)

    一.环境规划 1.架构拓扑图 2.主机规划 3.软件版本 [root@k8s-master ~]# cat /etc/redhat-release CentOS Linux release 7.4.1 ...

  6. kubernetes云平台管理实战: 自动加载到负载均衡(七)

    一.如何实现外界能访问 外界访问不了 1.启动svc [root@k8s-master ~]# cat myweb-svc.yaml apiVersion: v1 kind: Service meta ...

  7. kubernetes云平台管理实战: 故障自愈实战(四)

    一.创建实验文件 [root@k8s-master ~]# cat myweb-rc.yml apiVersion: v1 kind: ReplicationController metadata: ...

  8. kubernetes云平台管理实战: 最小的资源pod(二)

    一.pod初体验 1.编辑k8s_pod.yml文件 [root@k8s-master ~]# cat k8s_pod.yml apiVersion: v1 kind: Pod metadata: n ...

  9. kubernetes云平台管理实战: 服务发现和负载均衡(五)

    一.rc控制器常用命令 1.rc控制器信息查看 [root@k8s-master ~]# kubectl get replicationcontroller NAME DESIRED CURRENT ...

随机推荐

  1. mysql 从一个表中查询,插入到另一个表中

    insert into table1(field1) select field1 from table2; ;

  2. Linux Mysql 每天定时备份

    1.创建脚本 dbback.sh,内容如下: #!/bin/bash mysqldump -uroot -p123456 hexin>/work/db_back/hexin_$(date +%Y ...

  3. Python开发【字符串格式化篇】

    1.百分号 __author__ = "Tang" # + 号 拼接 msg = "i am " + " tang" print(msg) ...

  4. 离线搭建Android Studio开发环境

    https://blog.csdn.net/lilang_9920/article/details/81005345 自媒体可放心发,到时候再删就行了,to thi tha

  5. vue-router(hash模式)常见问题以及解决方法

    问题一:// 动态路由/detail/:id 问题:动态路由跳转的时候,页面是不刷新的,相信很多人都遇到了相同的问题解决方法:在全局的router-view组件上设置一个key值,此key值为一个时间 ...

  6. 期末架构-Centos7

    00--linux运维架构演变过程 01--老男孩教育-CentOS6和7 01-笔记 安装系统 系统下载地址:http://mirrors.aliyun.com/centos/7/isos/x86_ ...

  7. SDOI2019R1游记

    差点退役,真是开心 Day -2 吐了一晚上,差点死掉 被拉去医院打针,结果蛇皮的被扎了两针,真是好疼啊嘤嘤嘤 决定第二天在家里咕一天 Day -1 结果在家里也得做\(loli\)昨天的不知道从哪里 ...

  8. 基于 HTML5 WebGL 的 3D 工控裙房系统

    前言 工业物联网在中国的发展如火如荼,网络基础设施建设,以及工业升级的迫切需要都为工业物联网发展提供了很大的机遇.中国工业物联网企业目前呈现两种发展形式并存状况:一方面是大型通讯.IT企业的布局:一方 ...

  9. 《React Native 精解与实战》书籍连载「React Native 源码学习方法及其他资源」

    此系列文章将整合我的 React 视频教程与 React Native 书籍中的精华部分,给大家介绍 React Native 源码学习方法及其他资源. 最后的章节给大家介绍 React Native ...

  10. Java Mail 实现第三方邮件发送功能

    1 创建一个用于发送邮件的类 package com.latiny.service; import java.io.IOException; import java.io.InputStream; i ...