Skip to content

Commit 72c2542

Browse files
authored
Update README.md
1 parent 590faf6 commit 72c2542

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ As the released binaries aren't signed yet, on macOS and Windows, you must first
5353
If you have a working Go toolchain, you can use `go get` to install k0sctl to your `$GOPATH/bin`.
5454

5555
```sh
56-
$ GO111MODULE=on go get github.com/k0sproject/k0sctl
56+
GO111MODULE=on go get github.com/k0sproject/k0sctl
5757
```
5858

5959
### Package managers
@@ -66,7 +66,6 @@ K0sctl is still in an early stage of development. Missing major features include
6666

6767
* Windows targets are not yet supported
6868
* The released binaries have not been signed
69-
* Cluster backup and restore are not available yet
7069
* Nodes can't be removed
7170

7271
## Usage
@@ -78,7 +77,7 @@ The main function of k0sctl is the `k0sctl apply` subcommand. Provided a configu
7877
The default location for the configuration file is `k0sctl.yaml` in the current working directory. To load a configuration from a different location, use:
7978

8079
```sh
81-
$ k0sctl apply --config path/to/k0sctl.yaml
80+
k0sctl apply --config path/to/k0sctl.yaml
8281
```
8382

8483
If the configuration cluster version `spec.k0s.version` is greater than the version detected on the cluster, a cluster upgrade will be performed. If the configuration lists hosts that are not part of the cluster, they will be configured to run k0s and will be joined to the cluster.
@@ -90,19 +89,19 @@ Generate a configuration template. Use `--k0s` to include an example `spec.k0s.c
9089
Output a minimal configuration template:
9190

9291
```sh
93-
$ k0sctl init > k0sctl.yaml
92+
k0sctl init > k0sctl.yaml
9493
```
9594

9695
Output an example configuration with a default k0s config:
9796

9897
```sh
99-
$ k0sctl init --k0s > k0sctl.yaml
98+
k0sctl init --k0s > k0sctl.yaml
10099
```
101100

102101
Create a configuration from a list of host addresses and pipe it to k0sctl apply:
103102

104103
```sh
105-
$ k0sctl init 10.0.0.1 10.0.0.2 [email protected]:8022 | k0sctl apply --config -
104+
k0sctl init 10.0.0.1 10.0.0.2 [email protected]:8022 | k0sctl apply --config -
106105
```
107106

108107
### `k0sctl backup & restore`

0 commit comments

Comments
 (0)