You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ As the released binaries aren't signed yet, on macOS and Windows, you must first
53
53
If you have a working Go toolchain, you can use `go get` to install k0sctl to your `$GOPATH/bin`.
54
54
55
55
```sh
56
-
$ GO111MODULE=on go get github.com/k0sproject/k0sctl
56
+
GO111MODULE=on go get github.com/k0sproject/k0sctl
57
57
```
58
58
59
59
### Package managers
@@ -66,7 +66,6 @@ K0sctl is still in an early stage of development. Missing major features include
66
66
67
67
* Windows targets are not yet supported
68
68
* The released binaries have not been signed
69
-
* Cluster backup and restore are not available yet
70
69
* Nodes can't be removed
71
70
72
71
## Usage
@@ -78,7 +77,7 @@ The main function of k0sctl is the `k0sctl apply` subcommand. Provided a configu
78
77
The default location for the configuration file is `k0sctl.yaml` in the current working directory. To load a configuration from a different location, use:
79
78
80
79
```sh
81
-
$ k0sctl apply --config path/to/k0sctl.yaml
80
+
k0sctl apply --config path/to/k0sctl.yaml
82
81
```
83
82
84
83
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
90
89
Output a minimal configuration template:
91
90
92
91
```sh
93
-
$ k0sctl init > k0sctl.yaml
92
+
k0sctl init > k0sctl.yaml
94
93
```
95
94
96
95
Output an example configuration with a default k0s config:
97
96
98
97
```sh
99
-
$ k0sctl init --k0s > k0sctl.yaml
98
+
k0sctl init --k0s > k0sctl.yaml
100
99
```
101
100
102
101
Create a configuration from a list of host addresses and pipe it to k0sctl apply:
0 commit comments