== Create a pod to access the file systems ==
After login and adjusting the kubeconfig to the new cluster and user namespace, you should be able to start your first pod. Create a work directory on your machine, and a file "accessubuntu-test-pod.yaml" with the following content:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
> kubectl apply -f accessubuntu-test-pod.yaml
> kubectl get pods
> kubectl describe pod accessubuntu-test-pod
</syntaxhighlight>
<syntaxhighlight lang="bash">
> kubectl exec -it accessubuntu-test-pod -- /bin/bash
# cd /abyss/home/
# ls
<syntaxhighlight lang="bash">
> kubectl cp <my-files> accessubuntu-test-pod:/abyss/home/
</syntaxhighlight>