Skip to content

Commit 24a4550

Browse files
committed
fix(docs): allow users to copy commands directly
1 parent 2e5ada6 commit 24a4550

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ A lightweight Kubernetes engine that deploys `k3s` clusters declaratively based
1111
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:
1212

1313
```bash
14-
$ make vagrant-up
14+
make vagrant-up
1515
```
1616

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

1919
```bash
20-
$ make vagrant-down
20+
make vagrant-down
2121
```
2222

2323
## Prerequisites 📝
2424

2525
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:
2626

2727
```bash
28-
$ echo "$(whoami) ALL=(ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/$(whoami)
28+
echo "$(whoami) ALL=(ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/$(whoami)
2929
```
3030

3131
## Limitations 🚨

0 commit comments

Comments
 (0)