Configuring the S3 storage mount
Activities Plus for Component Pack deploys a Minio service. To configure the NFS mount, S3 storage mount instructions for Component Pack are provided.
Procedure
-
Create the folder on the NFS server:
sudo mkdir /pv-connections/kudos-boards-minio sudo chmod 755 /pv-connections/kudos-boards-minio
Ensure each Node in your Kubernetes cluster can mount this location.
Please
-
To ensure that each node in your Kubernetes cluster can mount this location, modify the file
/etc/exports on your NFS server to include this line:
/pv-connections/kudos-boards-minio <IP_RANGE_OF_YOUR_SERVERS>/<SUBNET_MASK>(rw,no_root_squash)
Example:/pv-connections/kudos-boards-minio 192.168.0.0/255.255.0.0(rw,no_root_squash)
-
Apply new NFS storage to exports by running the following command:
exportfs -ra