-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
k3s: add page #16772
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
k3s: add page #16772
Conversation
- Install a single-node K3s server with default settings: | ||
|
||
`curl {{[-sfL|--silent --fail --location]}} https://get.k3s.io | sh -s - server` | ||
|
||
- Install a K3s server without deploying a local agent: | ||
|
||
`curl {{[-sfL|--silent --fail --location]}} https://get.k3s.io | sh -s - server --disable {{agent}}` | ||
|
||
- Install a K3s agent that connects to a server: | ||
|
||
`curl {{[-sfL|--silent --fail --location]}} https://get.k3s.io | sh -s - agent {{[-s|--server]}} {{https://myserver:6443}} {{[-t|--token]}} {{mytoken}}` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not really liking curling random things off the internet and then running them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we simply remove these three examples?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll leave this open for a couple of weeks in case @depgod comes back to fix this page. If not, we'll remove the examples and merge. Eventually someone will come to adjust the page.
Co-authored-by: Sebastiaan Speck <[email protected]>
common