Skip to content

Commit

Permalink
k3s: disable trafefik by defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
hftsin committed Dec 13, 2022
1 parent f8a4444 commit 9c20e4a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions environment/container/kubernetes/k3s.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ func installK3sCluster(
"--resolv-conf", "/etc/resolv.conf",
}

// disable traefik defaults
args = append(args, "--disable", "traefik")

for _, d := range disable {
args = append(args, "--disable", d)
}
Expand Down

0 comments on commit 9c20e4a

Please sign in to comment.