【笔记】基于github Page创建hexo个人博客

安装环境 Node.js:https://nodejs.org/zh-cn Git:https://git-scm.com/downloads 链接Github12git config --global user.name "GitHub 用户名"git config --global us...

【云原生】基于Percona Operator支持全命名空间创建PXC集群(manifest方式)

官方文档:通用 Kubernetes 安装 - Percona Operator for MySQL — Generic Kubernetes installation - Percona Operator for MySQL 安装Operator12git clone -b v1.14.0 https://gi...

【云原生】基于 PostgreSQL Operator 在 k8s 集群中部署Postgres 集群并启动 PostGIS(kustomize方式)

准备12git clone --depth 1 "https://github.com/CrunchyData/postgres-operator-examples.git"cd postgres-operator-examples 安装PGO官方地址:https://access.crun...

【云原生】Kubernetes通过device-plugin调度GPU资源-NVIDIA

NVIDIA官方文档:NVIDIA/k8s-device-plugin:用于 Kubernetes 的 NVIDIA 设备插件 前提条件 安装驱动,原文地址:Linux Kernel 3.10安装NVIDIA 550.107.02驱动GeForce RTX 2080 Ti - Elijah Blog (...

【云原生】K8sGPT + LocalAI 开源自动化诊断工具(GPT4All-j模型)

k8sgpt官方文档:In-Cluster Operator - k8sgpt localai官方文档:Run with Kubernetes | LocalAI documentation 参考文献:K8sGPT + LocalAI: Unlock Kubernetes superpowers for free...

【云原生】istio服务网格进阶-故障注入与请求超时(详解)

官方文档:Istio / 故障注入、Istio / 设置请求超时 前提条件: 部署服务(我这里是官方bookinfo程序) 服务注入sidecar 部署在这里提到过,原文地址:istio服务网格入门-灰度发布 - (sreok.cn) 故障注入将请求转发给reviews v2版本只有这...

【云原生】istio服务网格入门-灰度发布

官方文档:Istio / 流量转移 前提条件: 微服务使用deployment+service部署到集群 1、配置命名空间自动注入sidecar1kubectl label namespace default istio-injection=enabled 我这里使用istio官方提供的booki...

【云原生】istio服务网格入门-流量熔断

前提条件: 部署服务(deployment、service)并注入sidecar 我这里还是使用官方提供的bookinfo程序,选择productpage作为熔断目标 123456789101112kubectl apply -f - << EOFapiVersion: networking.is...

【云原生】istio服务网格入门-流量镜像

官方文档:Istio / 镜像 启动httpbin服务(演示服务)1234567891011121314151617181920212223242526# v1版本cat <<EOF | istioctl kube-inject -f - | kubectl create -f -apiVe...

【云原生】Kubernetes部署Zookeeper v3.9 + Kafka v3.7.0 集群 (manifest方式)

部署zookeeper(三节点)123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475...