This commit is contained in:
2025-11-27 12:51:11 +08:00
parent 5d788be63d
commit 6220dd6b70
9 changed files with 320 additions and 12 deletions

View File

@@ -6,3 +6,18 @@
## 配置国内源
## 禁用默认的traefik
```bash
vim /etc/rancher/k3s/config.yaml
# 添加以下内容禁用默认traefik
disable: traefik
# 重启k3s服务
systemctl restart k3s
# 删除默认traefik相关资源
kubectl delete job -n kube-system helm-install-traefik helm-install-traefik-crd
# 安装 Traefik CRD
kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v3.0/docs/content/reference/dynamic-configuration/kubernetes-crd-definition-v1.yml
```