The example of Docs layout.

https://blog.csdn.net/qq_36651243/article/details/89242448 https://developer.aliyun.com/article/1408392 https://blog.csdn.net/tangsiqi130/article/details/131765077 https://blog.csdn.net/weixin_54720351/article/details/129833423 https://www.cnblogs.com/l-hh/p/14816977.html https://blog.51cto.com/u_16213708/7557178...

双节点集群IP地址信息: 节点01:ghzy-hr01 172.30.15.84 节点02:ghzy-hr02 172.30.15.85 虚拟IP:172.30.15.83 1、设置主机名; vim /etc/hostname 设置主机名后,需要重启生效 2、设置hosts主机名解析; vim /etc/hosts在配置文件中增加以下内容: 172.30.15.84 ghzy-hr01 172.30.15.85 ghzy-hr02 3、关闭Selinux; setenforce 0 sed -i “s/SELINUX=enforcing/SELINUX=disabled/” /etc/selinux/config 4、关...

参考文档 https://grafana.com/docs/loki/latest/setup/install/helm/install-monolithic/ https://grafana.com/docs/grafana/latest/setup-grafana/installation/kubernetes/ https://grafana.com/docs/loki/latest/send-data/promtail/installation/ https://cloud.tencent.com/developer/article/2090570 Loki API...

安装文档: https://istio.io/latest/zh/docs/setup/install/helm/ https://istio.io/latest/zh/docs/ops/common-problems/injection/ https://blog.csdn.net/wangqiaowq/article/details/134396695 与springboot集成: https://grpc-ecosystem.github.io/grpc-spring/zh-CN/ https://www.cnblogs.com/fengpinglangjingruma/p/14627807.html...

k8s 部署 Grafana + Loki + Promtail 日志系统 https://blog.csdn.net/ichen820/article/details/134287977 https://grafana.com/docs/grafana/v9.0/setup-grafana/installation/kubernetes/ Loki 是主服务,负责存储日志和处理查询 promtail 是代理,负责收集日志并将其发送给 loki Grafana 用于 UI 展示 部署前准备 1[zhangcong@master k8s]$ kubectl create ns logging 部署Grafana...

参考文档: https://blog.csdn.net/qq_46480020/article/details/132551081 https://blog.csdn.net/jialiu111111/article/details/128626529 新建k8s部署mysql的配置文件: vim mysql-deploy.yaml 内容如下: 1apiVersion: v1 2kind: Namespace 3metadata: 4 name: mysql-dev 5--- 6apiVersion: v1 7kind: ConfigMap 8metadata: 9 name: mysql-config 10 namespace:...

k8s 部署 nginx+php-fpm https://www.cnblogs.com/wuxinchun/p/15697919.html https://blog.51cto.com/u_15620612/9551113 https://www.cnblogs.com/douyi/p/12099701.html https://blog.csdn.net/PlatoWG/article/details/124092480 https://hub.docker.com/_/php https://www.dismall.com/thread-14660-1-1.html...

参考文档: https://blog.csdn.net/weixin_39750084/article/details/136349711 (主要) https://blog.csdn.net/qq_14910065/article/details/135351830 创建资源文件 vim postgres.yaml,内容如下: 1apiVersion: v1 2kind: Namespace 3metadata: 4 name: postgres-dev 5--- 6apiVersion: v1 7kind: ConfigMap 8metadata: 9 name: postgres-config 10 namespace:...

参考文档: https://blog.csdn.net/lihongbao80/article/details/103602684 https://blog.csdn.net/muguazhi/article/details/132455056 新建k8s部署redis的配置文件 内容如下: 1apiVersion: v1 2kind: Namespace 3metadata: 4 name: redis-dev 5--- 6apiVersion: apps/v1 7kind: Deployment 8metadata: 9 name: redis-deploy 10 namespace: redis-dev 11 labels:...

参考文档: https://www.jb51.net/article/275999.htm https://www.jb51.net/article/276003.htm https://blog.csdn.net/sebeefe/article/details/124473706 https://blog.csdn.net/jiaohuizhuang6019/article/details/134499235 https://www.zhihu.com/question/448458021/answer/2870967376 https://zhuanlan.zhihu.com/p/445316238...