Deleted Adminer,Humhub,Mastodon,Matrix

This commit is contained in:
2024-01-16 20:42:27 +11:00
parent e9daccd840
commit 5719282895
30 changed files with 4 additions and 1064 deletions

View File

@ -21,7 +21,7 @@ mount -a
## K3s cluster
On first node (replace `<floating ip>` with the correct value):
```shell
curl -sfL https://get.k3s.io | sh -s - server --cluster-init --disable local-storage,traefik --tls-san <floating ip>
curl -sfL https://get.k3s.io | sh -s - server --cluster-init --disable local-storage,servicelb --tls-san <floating ip>
cat /var/lib/rancher/k3s/server/token
kubectl config view --raw
```
@ -36,7 +36,7 @@ EOF
```
On subsequent nodes (replace `<floating ip>` and `<value from master>` with the correct values):
```shell
curl -sfL https://get.k3s.io | K3S_URL=https://<floating ip>:6443 K3S_TOKEN=<value from master> sh -s - server --disable local-storage,traefik
curl -sfL https://get.k3s.io | K3S_URL=https://<floating ip>:6443 K3S_TOKEN=<value from master> sh -s - server --disable local-storage,servicelb
```
### 0) Configure automatic updates
@ -100,9 +100,9 @@ Perform installation:
```shell
kubectl apply -f storage/flexVolSMB/daemonSet-flexVolSMB.yml
```
Wait for installation to complete (check logs of all installer-pods), then delete `daemonSet`:
Wait for installation to complete (check logs of all installer-pods), then pause `daemonSet`:
```shell
kubectl delete -f storage/flexVolSMB/daemonSet-flexVolSMB.yml
kubectl patch daemonset juliohm-cifs-volumedriver-installer -p '{"spec": {"template": {"spec": {"nodeSelector": {"intentionally-paused": ""}}}}}'
```
Store credentials in `secret`:
```shell