apiVersion: apps/v1 kind: Deployment metadata: name: nginx spec: replicas: 1 selector: matchLabels: app: nginx template: metadata: labels: app: nginx ...
分类:
其他好文 时间:
2020-05-31 16:15:45
阅读次数:
68
apiVersion: apps/v1 kind: Deployment metadata: name: mysql2 spec: replicas: 1 selector: matchLabels: app: mysql2 template: metadata: labels: app: mysq ...
分类:
数据库 时间:
2020-05-31 16:02:50
阅读次数:
97
Pod的升级和回滚 Deployment的升级 apiVersion: apps/v1beta1 kind: Deployment metadata: name: nginx-deployment namespace: test spec: replicas: 3 template: metadat ...
分类:
Web程序 时间:
2020-05-28 16:39:48
阅读次数:
85
一、Service 对于kubernetes整个集群来说,Pod的地址也可变的,也就是说如果一个Pod因为某些原因退出了,而由于其设置了副本数replicas大于1,那么该Pod就会在集群的任意节点重新启动,这个重新启动的Pod的IP地址与原IP地址不同,这对于业务来说,就不能根据Pod的IP作为业 ...
分类:
Web程序 时间:
2020-05-27 18:32:37
阅读次数:
73
玩转Pod调度 Deployment或RC:全自动调度 apiVersion: apps/v1beta1 kind: Deployment metadata: name: nginx-deployment spec: replicas: 3 template: metadata: labels: a ...
分类:
Web程序 时间:
2020-05-25 17:31:45
阅读次数:
58
规划、搭建过程:6个redis实例,一般会放到3台硬件服务器注:在企业规划中,一个分片的两个分到不同的物理机,防止硬件主机宕机造成的整个分片数据丢失。端口号:7000-7005 # 1。 安装集群插件 EPEL源安装ruby支持yum install ruby rubygems -y # 2. 配置 ...
分类:
数据库 时间:
2020-05-21 16:24:53
阅读次数:
62
本篇将会讲解应用部署到Kubenetes集群,集群副本集查看,集群自愈能力演示,集群扩容,滚动升级,以及回滚。 本篇是Docker&Kubenetes系列的第四篇,在前面的篇幅中,我们向Kubenetes中部署了单个应用实例。如果单个节点故障了,那么服务就不可用了,这在实际环境中是不能接受的。在实际 ...
分类:
Web程序 时间:
2020-05-19 22:36:49
阅读次数:
78
可以用 update-index-settings API 动态修改副本数: PUT /my_temp_index/_settings { "number_of_replicas": 1 } curl -XPUT http://192.168.0.200:9200/index_execution_2 ...
分类:
其他好文 时间:
2020-05-15 20:15:33
阅读次数:
128
``` PUT _template/log-template { "template": "log.*", "settings": { "number_of_shards": "3", "number_of_replicas": "1" } } ``` ...
分类:
其他好文 时间:
2020-05-15 15:24:42
阅读次数:
61
作用:通过Deployment声明式平滑升级POD一、创建Deployment文件apiVersion:apps/v1beta1kind:Deploymentmetadata:name:kubianamespace:testspec:replicas:3template:metadata:name:kubialabels:app:kubiaspec:containers:-name:nodejsi
分类:
其他好文 时间:
2020-05-13 09:40:26
阅读次数:
95