The typical workflow if you want to run your own applications is as follows:
# Log in to the cluster and configure kubectl, the command line tool to talk to Kubernetes, to use your login credentialsand namespace.
# Create a persistent container to access the file systems, and mount the Ceph volumes inside it. Use this container to transfer code and data to the cluster and back.
# (optional): Create your own custom container image with special libraries etc. which you need to run your code.
We will cover these points in more detail below.
== Log in to the cluster and configure kubectl ==