=== Global dataset storage for large, static datasets ===
Every The first cluster node has exports an NFS filesystem on a link to a global repository "/raid/datasets" in its filesystemlarge NVMe-Raid, which sits on very is reasonably fast NVMe raid (1and can be used as a global dataset storage.9 GB/s read) and It can be mounted read-only in every container into a pod as in the following examplefollows:
<syntaxhighlight lang="yaml">
todoapiVersion: v1kind: Podmetadata: name: your-username-test-global-storagespec: containers: - name: your-username-test-global-storage # we use a small ubuntu base to access the PVC image: ubuntu:18.04 # make sure that we have some time until the container quits by itself command: ['sleep', '6h'] volumeMounts: # Path to mount the NFS volume to - mountPath: "/mnt/datasets" name: datasets-nfs # NFS is exported read-only readOnly: true volumes: # Volume which mounts the NFS server exported to the cluster by ccu-node1 - name: datasets-nfs nfs: server: ccu-node1 path: /raid/datasets
</syntaxhighlight>