This commit is contained in:
2023-02-20 12:13:14 +07:00
parent 70ee9f1639
commit 9f310557f3
20 changed files with 594 additions and 0 deletions

16
3.RKE2/nfs/nfs-install.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
ssh node1 apt install -y nfs-common
ssh node1 systemctl enable rpcbind
ssh node1 systemctl start rpcbind
ssh node2 apt install -y nfs-common
ssh node2 systemctl enable rpcbind
ssh node2 systemctl start rpcbind
ssh node3 apt install -y nfs-common
ssh node3 systemctl enable rpcbind
ssh node3 systemctl start rpcbind
#helm upgrade --install --create-namespace nfs-provisioner -n nfs-provisioner nfs-provisioner