分类:云原生

50 篇文章

【Kubernetes弹性伸缩方案】VPA(Vertical Pod Autoscaler)纵向自动伸缩

前提条件 Kubernetes >= 1.25 Openssl >= 1.1.1 部署MetricServer 官方地址:自动扩缩工作负载 | Kubernetes 官方Github:...

【Kubernetes弹性伸缩方案】HPA(Horizontal Pod Autoscaler)横向自动伸缩

前提条件 Kubernetes >= 1.23 安装Metrics-server 原文地址:k8s 安装metrics-server v0.7.1 - (sreok.cn...

【Kubernetes日志收集方案】基于ECK部署生产级ElasticSearch + Kibana + FileBeat(v8.14.1)

官方文档:Deploy ECK in your Kubernetes cluster 部署ECK crd kubectl create -f https://download.elastic.co/downloads/eck/2.13.0/crds.yaml 部署Operator...

【部署】Kubernetes Dashboard v7.5.0 部署(Helm方式)

安装dashboard helm repo add kubernetes-dashboard https://kubernetes.github.io/dashboard/ helm upgrade --install kubernetes-dashboard kubernetes-dashboar...

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

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

【部署】Kubernetes Dashboard v2.7.0部署(token、kubeconfig登录)

部署dashboard wget https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml 创建sa、clusterrolebing、secret kubectl create ...

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

官方文档:通用 Kubernetes 安装 - Percona Operator for MySQL --- Generic Kubernetes installation - Percona Operator for MySQL 安装Operator git clone -b v1.14.0 ht...

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

官方文档:Istio / 故障注入、Istio / 设置请求超时 前提条件: 部署服务(我这里是官方bookinfo程序) 服务注入sidecar...

istio服务网格入门-流量镜像

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

istio服务网格入门-流量熔断

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