Files
Kubernetes-deploy/Cluster/nfs/nfs-install.sh
2021-05-20 14:20:41 +07:00

11 lines
263 B
Bash

#!/bin/bash
# From ALL k8s-nodes
apt install -y nfs-common && systemctl enable rpcbind && systemctl start rpcbind
# from Lens
kubectl create ns nfs-provisioner
# Check VALUES BEFORE !!!
helm upgrade --install nfs-provisioner -n nfs-provisioner nfs-provisioner