Forked from smijar/k3d-create-cluster-no-traefik.sh
Created
January 24, 2023 08:33
-
-
Save voratham/c437a672710b669d2e51efa6fce4b078 to your computer and use it in GitHub Desktop.
k3d create cluster without traefik and serverlb
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
# Possibly obsolete: k3d create --name testcls1 --workers 3 | |
k3d create --name testcls1 --workers 3 --server-arg "--no-deploy=traefik" --server-arg "--no-deploy=servicelb" | |
# UPDATE: in newer versions onwards, this has evolved to (thanks to comments below): | |
k3d cluster create --k3s-arg "--no-deploy=traefik@server:*" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment