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
It was found that when joining servers to a cluster any additional servers
would not honour the `--no-extras` flag used with the install command.
It is necessary, therefore, for the flag to be added to `join` and only
be applied in situations where `--server` has been provided.
Signed-off-by: Richard Gee <richard@technologee.co.uk>
If you used `--no-extras` on the initial installation you will also need to provide it on each join:
542
+
543
+
```sh
544
+
export USER=root
545
+
export SERVER_IP=192.168.0.100
546
+
export NEXT_SERVER_IP=192.168.0.101
547
+
548
+
k3sup join \
549
+
--ip $NEXT_SERVER_IP \
550
+
--user $USER \
551
+
--server-user $USER \
552
+
--server-ip $SERVER_IP \
553
+
--server \
554
+
--no-extras \
555
+
--k3s-version v1.19.1+k3s1
556
+
```
557
+
541
558
### 👨💻 Micro-tutorial for Raspberry Pi (2, 3, or 4) 🥧
542
559
543
560
In a few moments you will have Kubernetes up and running on your Raspberry Pi 2, 3 or 4. Stand by for the fastest possible install. At the end you will have a KUBECONFIG file on your local computer that you can use to access your cluster remotely.
0 commit comments