Skip to content

Commit

Permalink
fix(docs): allow users to copy commands directly
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklasfrahm committed Aug 14, 2022
1 parent 2e5ada6 commit 24a4550
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ A lightweight Kubernetes engine that deploys `k3s` clusters declaratively based
If you want to test `k3se` you can use [Vagrant][website-vagrant]. All examples in the `examples/` folder can be used with the provided `Vagrantfile` that provisions 3 Ubuntu VMs. To bring up the VMs you can run the following command:

```bash
$ make vagrant-up
make vagrant-up
```

Once you are done testing, you can destroy the VMs with the following command:

```bash
$ make vagrant-down
make vagrant-down
```

## Prerequisites 📝

The nodes have to be accessible via SSH, either directly or via a bastion host. Further, the user on the remote nodes needs to have passwordless `sudo` set up. If this is not yet the case, you may manually do so via the following command:

```bash
$ echo "$(whoami) ALL=(ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/$(whoami)
echo "$(whoami) ALL=(ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/$(whoami)
```

## Limitations 🚨
Expand Down

0 comments on commit 24a4550

Please sign in to comment.