会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
打赏
klvchen
首页
新随笔
联系
订阅
管理
上一页
1
···
15
16
17
18
19
20
21
22
23
···
50
下一页
2020年12月15日
Helm v3 安装及常用命令-20230920
摘要: # 下载,安装 wget https://get.helm.sh/helm-v3.4.2-linux-amd64.tar.gz tar -zxvf helm-v3.4.2-linux-amd64.tar.gz mv linux-amd64/helm /usr/local/bin/helm # 查看版
阅读全文
posted @ 2020-12-15 11:36 klvchen
阅读(764)
评论(0)
推荐(0)
2020年12月14日
Arthas
摘要: curl -O https://alibaba.github.io/arthas/arthas-boot.jar && java -jar arthas-boot.jar 文档 https://arthas.aliyun.com/doc/
阅读全文
posted @ 2020-12-14 11:54 klvchen
阅读(91)
评论(0)
推荐(0)
2020年11月30日
K8S 安装 metrics-server v0.3.7
摘要: 版本: K8S:v1.16.9 metrics-server:v0.3.7 源码地址:https://github.com/kubernetes-sigs/metrics-server/ mkdir /data/metrics-server && cd /data/metrics-server wg
阅读全文
posted @ 2020-11-30 09:23 klvchen
阅读(758)
评论(0)
推荐(0)
2020年11月24日
搭建 RabbitMQ 集群及Python代码测试
摘要: RabbitMQ 搭建可以参考:https://www.cnblogs.com/klvchen/p/14026068.html 官网集群介绍:https://www.rabbitmq.com/clustering.html 测试架构 名称 IP node-1 192.168.0.100 node-2
阅读全文
posted @ 2020-11-24 18:36 klvchen
阅读(282)
评论(0)
推荐(0)
CentOS 7 搭建 RabbitMQ
摘要: 版本: RabbitMQ v3.8.0;官网:https://www.rabbitmq.com/ Erlang v21.3; 官网:https://www.erlang.org/ 安装 # 设置 hostname hostnamectl set-hostname node-1 hostname no
阅读全文
posted @ 2020-11-24 10:03 klvchen
阅读(224)
评论(0)
推荐(0)
2020年11月18日
Istio 安装
摘要: 官网:https://istio.io/ 控制中心做了进一步的细分,分成了 Pilot、Mixer 和 Citadel,它们的各自功能如下: Pilot:为 Envoy 提供了服务发现,流量管理和智能路由(AB 测试、金丝雀发布等),以及错误处理(超时、重试、熔断)功能。 用户通过 Pilot 的
阅读全文
posted @ 2020-11-18 11:32 klvchen
阅读(1184)
评论(0)
推荐(0)
2020年11月5日
Istio 例子(采用API Gateway + Sidecar Proxy作为服务网格的流量入口)
摘要: 由于API Gateway已经具备七层网关的功能,Mesh Ingress中的Sidecar只需要提供VirtualService资源的路由能力,并不需要提供Gateway资源的网关能力,因此采用Sidecar Proxy即可。网络入口处的Sidecar Proxy和网格内部应用Pod中Sideca
阅读全文
posted @ 2020-11-05 17:46 klvchen
阅读(992)
评论(0)
推荐(0)
Istio 例子(基于用户身份路由)
摘要: Istio 对用户身份没有任何特殊的内置机制。通过对 HTTP 请求中增加了一个自定义的 user 请求头达到效果。 创建应用 vi myapp-demo.yaml apiVersion: v1 kind: Service metadata: name: myapp-svc spec: ports:
阅读全文
posted @ 2020-11-05 09:10 klvchen
阅读(497)
评论(0)
推荐(0)
2020年11月4日
Istio 例子(单个应用,灰度发布)
摘要: 准备工作 安装好 Istio # 安装 demo 配置 istioctl install --set profile=demo # 设置启用自动注入 istio sidecar 的命名空间 kubectl label namespace default istio-injection=enabled
阅读全文
posted @ 2020-11-04 15:28 klvchen
阅读(903)
评论(0)
推荐(0)
2020年10月9日
查找 Linux 父进程的方法
摘要: # -a 表示输出命令行选项 # p表PID # s表示指定进程的父进程 pstree -aps 3080 # 3080 是子进程号 systemd,1 └─dockerd,15006 -H fd:// └─docker-containe,15024 --config /var/run/docker
阅读全文
posted @ 2020-10-09 21:04 klvchen
阅读(9010)
评论(0)
推荐(1)
上一页
1
···
15
16
17
18
19
20
21
22
23
···
50
下一页
公告