Skip to content

Commit

Permalink
docs: fix typos in CLI calls to endpoints
Browse files Browse the repository at this point in the history
It should be `--endpoints`.

Signed-off-by: Zachary Milonas <[email protected]>
Signed-off-by: Andrey Smirnov <[email protected]>
  • Loading branch information
zmilonas authored and smira committed Oct 2, 2023
1 parent 0bd1bdd commit 159f45b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions website/content/v1.5/introduction/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ Thus it is recommended to explicitly pass in the configuration file while becomi
Bootstrapping your Kubernetes cluster with Talos is as simple as calling `talosctl bootstrap` on your control plane node:

```sh
talosctl bootstrap --nodes 192.168.0.2 --endpoint 192.168.0.2 \
talosctl bootstrap --nodes 192.168.0.2 --endpoints 192.168.0.2 \
--talosconfig=./talosconfig
```

Expand All @@ -279,15 +279,15 @@ At this point, Talos will form an `etcd` cluster, and start the Kubernetes contr
After a few moments, you will be able to download your Kubernetes client configuration and get started:

```sh
talosctl kubeconfig --nodes 192.168.0.2 --endpoint 192.168.0.2
talosctl kubeconfig --nodes 192.168.0.2 --endpoints 192.168.0.2
```

Running this command will add (merge) you new cluster into your local Kubernetes configuration.

If you would prefer the configuration to *not* be merged into your default Kubernetes configuration file, pass in a filename:

```sh
talosctl kubeconfig alternative-kubeconfig --nodes 192.168.0.2 --endpoint 192.168.0.2
talosctl kubeconfig alternative-kubeconfig --nodes 192.168.0.2 --endpoints 192.168.0.2
```

You should now be able to connect to Kubernetes and see your nodes:
Expand All @@ -299,9 +299,9 @@ You should now be able to connect to Kubernetes and see your nodes:
And use talosctl to explore your cluster:

```sh
talosctl --nodes 192.168.0.2 --endpoint 192.168.0.2 health \
talosctl --nodes 192.168.0.2 --endpoints 192.168.0.2 health \
--talosconfig=./talosconfig
talosctl--nodes 192.168.0.2 --endpoint 192.168.0.2 dashboard \
talosctl --nodes 192.168.0.2 --endpoints 192.168.0.2 dashboard \
--talosconfig=./talosconfig
```

Expand Down
10 changes: 5 additions & 5 deletions website/content/v1.6/introduction/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ Thus it is recommended to explicitly pass in the configuration file while becomi
Bootstrapping your Kubernetes cluster with Talos is as simple as calling `talosctl bootstrap` on your control plane node:

```sh
talosctl bootstrap --nodes 192.168.0.2 --endpoint 192.168.0.2 \
talosctl bootstrap --nodes 192.168.0.2 --endpoints 192.168.0.2 \
--talosconfig=./talosconfig
```

Expand All @@ -279,15 +279,15 @@ At this point, Talos will form an `etcd` cluster, and start the Kubernetes contr
After a few moments, you will be able to download your Kubernetes client configuration and get started:

```sh
talosctl kubeconfig --nodes 192.168.0.2 --endpoint 192.168.0.2
talosctl kubeconfig --nodes 192.168.0.2 --endpoints 192.168.0.2
```

Running this command will add (merge) you new cluster into your local Kubernetes configuration.

If you would prefer the configuration to *not* be merged into your default Kubernetes configuration file, pass in a filename:

```sh
talosctl kubeconfig alternative-kubeconfig --nodes 192.168.0.2 --endpoint 192.168.0.2
talosctl kubeconfig alternative-kubeconfig --nodes 192.168.0.2 --endpoints 192.168.0.2
```

You should now be able to connect to Kubernetes and see your nodes:
Expand All @@ -299,9 +299,9 @@ You should now be able to connect to Kubernetes and see your nodes:
And use talosctl to explore your cluster:

```sh
talosctl --nodes 192.168.0.2 --endpoint 192.168.0.2 health \
talosctl --nodes 192.168.0.2 --endpoints 192.168.0.2 health \
--talosconfig=./talosconfig
talosctl--nodes 192.168.0.2 --endpoint 192.168.0.2 dashboard \
talosctl --nodes 192.168.0.2 --endpoints 192.168.0.2 dashboard \
--talosconfig=./talosconfig
```

Expand Down

0 comments on commit 159f45b

Please sign in to comment.