kind: Pod
metadata:
name: ubuntu-testaccess-pod
spec:
containers:
Save this e.g. into a "testaccess-pod.yaml", start the pod and verify that it has been created correcly and the filesystems have been mounted successfully, for example with the below commands. You can also check whether you can access the data you have copied over and copy/move it somewhere safe in your private home directory. If you have a large dataset which is probably useful for several people, please contact me so I can move it to the static read-only tree for datasets.
<syntaxhighlight lang="bash">
> kubectl apply -f testaccess-pod.yaml
> kubectl get pods
> kubectl describe pod ubuntu-testaccess-pod> kubectl exec -it ubuntu-testaccess-pod /bin/bash
$ ls /abyss/shared/<the directory you created for your data>
</syntaxhighlight>