1 2 3 4 5 ··· 14 下一页
摘要: 在k8s 集群上安装一个 nfs server https://github.com/kubernetes-csi/csi-driver-nfs/tree/master/deploy/example/nfs-provisioner kubectl create -f https://raw.gith 阅读全文
posted @ 2025-06-17 14:21 Maniana 阅读(30) 评论(0) 推荐(0)
摘要: 主机准备 主机名 IP 地址 系统版本 K8S 版本 k8s-master 192.168.3.100 Ubuntu24.04 v1.32 k8s-worker1 192.168.3.101 Ubuntu24.04 v1.32 k8s-worker2 192.168.3.102 Ubuntu24.0 阅读全文
posted @ 2025-05-30 14:46 Maniana 阅读(353) 评论(0) 推荐(0)
摘要: knative-serving 官网 https://knative.dev/docs/install/yaml-install/serving/install-serving-with-yaml/#install-the-knative-serving-component 安装所需的定制资源 ku 阅读全文
posted @ 2025-05-21 12:52 Maniana 阅读(25) 评论(0) 推荐(0)
摘要: calico官网 在集群上安装操作员 kubectl create -f https://raw.githubusercontent.com/projectcalico/calico/v3.29.3/manifests/tigera-operator.yaml 下载配置 Calico 所需的自定义资 阅读全文
posted @ 2025-04-27 14:47 Maniana 阅读(260) 评论(0) 推荐(0)
摘要: Daemonset方式 制作镜像 # cat Dockerfile FROM logstash:8.18.0 USER root WORKDIR /usr/share/logstash RUN rm -f config/logstash-sample.conf RUN rm -f pipeline/ 阅读全文
posted @ 2025-04-27 13:11 Maniana 阅读(167) 评论(0) 推荐(0)
摘要: 准备环境 # apt install -y qemu-user-static binfmt-support 配置多平台CPU指令集模拟器 # docker run --rm --privileged multiarch/qemu-user-static:register 在 x86_64(amd64 阅读全文
posted @ 2025-04-23 09:31 Maniana 阅读(179) 评论(0) 推荐(0)
摘要: 部署一个 minio docker run --name minio \ -p 9000:9000 \ -p 9999:9999 \ -d --restart=always \ -e "MINIO_ROOT_USER=admin" \ -e "MINIO_ROOT_PASSWORD=12345678 阅读全文
posted @ 2025-04-18 16:42 Maniana 阅读(42) 评论(0) 推荐(0)
摘要: 创建自签证书 openssl req -x509 -sha256 -newkey rsa:4096 -keyout ca.key -out ca.crt -days 3560 -nodes -subj '/CN=www.ca.com' openssl req -new -newkey rsa:409 阅读全文
posted @ 2025-04-11 15:41 Maniana 阅读(47) 评论(0) 推荐(0)
摘要: 查看集群所有成员状态 # export NODE_IPS="10.211.55.80 10.211.55.81 10.211.55.82" # for ip in ${NODE_IPS}; do ETCDCTL_API=3 /usr/local/bin/etcdctl \ --endpoints=h 阅读全文
posted @ 2025-04-09 17:19 Maniana 阅读(150) 评论(0) 推荐(0)
摘要: 准备证书 # openssl genrsa -out tls.key 2048 # openssl req -new -x509 -key tls.key -out tls.crt -subj /C=CN/ST=Beijing/L=Beijing/O=DevOps/CN=tomcat.yzy.com 阅读全文
posted @ 2023-07-25 18:22 Maniana 阅读(36) 评论(0) 推荐(0)
1 2 3 4 5 ··· 14 下一页