Last active
January 26, 2026 11:34
-
-
Save edr3x/aca7d5db5748dd625722f2023ababe50 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /var/lib/rancher/k3s/server/manifests/traefik-config.yaml | |
| apiVersion: helm.cattle.io/v1 | |
| kind: HelmChartConfig | |
| metadata: | |
| name: traefik | |
| namespace: kube-system | |
| spec: | |
| valuesContent: |- | |
| providers: | |
| kubernetesGateway: | |
| enabled: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="server --disable traefik --disable servicelb" sh - | |
| helm repo add traefik https://traefik.github.io/charts | |
| helm install traefik traefik/traefik | |
| # or | |
| # helm install traefik oci://ghcr.io/traefik/helm/traefik | |
| kubectl apply --server-side --force-conflicts -k https://github.com/traefik/traefik-helm-chart/traefik/crds/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment