51工具盒子

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

Docker笔记

 wiki 部署到 k8s 上步骤(简单)

wiki 部署到 k8s 上步骤(简单)

厉飞雨 阅读(74) 评论(0) 赞(7)

wiki 部署到 k8s 上步骤 先把目录 直接复制过去,包含confluence.cfg.xml 文件,然后修改 一下 数据库的server id 和 bundid 就可以。 1-存储卷 存储卷里的数据可以复制过去, 然后数据库里改一下 server id 和 budle id 2- 数据库 更改绑定的 id select * from CONFVERSIO...

k8s 删除名称空间

k8s 删除名称空间

厉飞雨 阅读(50) 评论(0) 赞(5)

k8s 删除名称空间 1-查看名称空间 kubectl get ns 2-可以先逐步尝试以下几种删除kubernetes命名空间namespace的方法 kubectl delete ns <要删除的命名空间> kubectl delete ns <要删除的命名空间> --force kubectl delet...

基于daemonset的日志收集k8s

基于daemonset的日志收集k8s

厉飞雨 阅读(83) 评论(0) 赞(5)

![](http://static.51tbox.com/static/2024-08-29/col/e15c82fa797f0be872c7b5320f43bdd4/136e219306e14f7d90935f6c2e773164.png.jpg) ###### 构建logstash镜像 Dockerfile FROM logstash:7.17.6 ...

k8s彻底删除pod

k8s彻底删除pod

厉飞雨 阅读(49) 评论(0) 赞(7)

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

k8s 污点

k8s 污点

厉飞雨 阅读(45) 评论(0) 赞(7)

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

k8s 备份-etcd 备份

k8s 备份-etcd 备份

厉飞雨 阅读(77) 评论(0) 赞(3)

etcd 备份: etcd is running. {"level":"info","ts":1698069449.0897536,"caller":"snapshot/v3_snapshot.go:119","msg":"cre...

k8s 集群重启

k8s 集群重启

厉飞雨 阅读(73) 评论(0) 赞(6)

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

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

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

厉飞雨 阅读(81) 评论(0) 赞(6)

平时我们看到应用商店的应用比较少,我们可以添加应用仓库,来增加应用。 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

厉飞雨 阅读(78) 评论(0) 赞(5)

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