51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

vps

k8s 集群重启

k8s 集群重启

厉飞雨 阅读(217) 评论(0) 赞(15)

<p>单纯的强制重启:</p> <p>#cat restartall.sh</p> <pre><code>#!/bin/bash nodes=$(kubectl get nodes | awk 'NR != 1{print $1}') for node in ${nodes[@]} ...

k8s 备份-etcd 备份

k8s 备份-etcd 备份

厉飞雨 阅读(265) 评论(0) 赞(15)

<p>etcd 备份:</p> <pre><code>etcd is running. {&quot;level&quot;:&quot;info&quot;,&quot;ts&quot;:1698069449.0897536,&quot;caller&quot;:&...

k8s 污点

k8s 污点

厉飞雨 阅读(217) 评论(0) 赞(16)

在 master上 打污点 这样任务就不会被分过来了。 node-role.kubernetes.io/master 在集群管理中,找到每个节点。 ![](http://static.51tbox.com/static/2024-08-29/col/d2483bc88925b7dfe4f1d5d750789d57/4ab7d767b4074ac5b5c5f9697...

k8s彻底删除pod

k8s彻底删除pod

厉飞雨 阅读(236) 评论(0) 赞(16)

k8s彻底删除pod kubectl delete pod my-pod -n namespace 如果Pod无法正常终止,可以使用"-f"选项强制删除Pod: kubectl delete pod -n namespace my-pod --force 举个例子: 先查看所有的 pod kubectl...

k8s部署zookeeper-kubsphere-应用仓库helm-bitnami

k8s部署zookeeper-kubsphere-应用仓库helm-bitnami

厉飞雨 阅读(226) 评论(0) 赞(15)

平时我们看到应用商店的应用比较少,我们可以添加应用仓库,来增加应用。 https://charts.enix.io https://charts.bitnami.com/bitnami helm repo add enix https://charts.enix.io 比如 helm k8s 中 所有的包都是 charts https://he...

k8s 安装Milvus分布式2.0x

k8s 安装Milvus分布式2.0x

厉飞雨 阅读(306) 评论(0) 赞(20)

### 安装Milvus分布式2.0x miluvs 官网:<https://milvus.io/docs/install_cluster-helm.md> **卸载:** helm uninstall my-release 使用 Kubernetes 包管理工具 Helm 添加 Milvus chart 仓库: helm repo add...

K8S持久化存储解决方案

K8S持久化存储解决方案

厉飞雨 阅读(271) 评论(0) 赞(19)

<h1>K8S持久化存储解决方案</h1> <p><a href="https://zhuanlan.zhihu.com/p/434209418?utm_id=0">K8S实战进阶篇:深入了解K8S持久化存储解决方案(五) - 知乎 (zhihu.com)</a></p>

k8s 集群安装 openELB

k8s 集群安装 openELB

厉飞雨 阅读(302) 评论(0) 赞(15)

k8s 集群安装 openELB 官网: https://openelb.io/ 需要呼吸 ![](http://static.51tbox.com/static/2024-08-29/col/7978f24931ff150a8bcc6668769b7f85/b38df4e25c6b45d79361b777ccfe370f.png.jpg) 2.1 需求 ------ ...