Reputation: 1781
I have linked a Persistent Volume to my Kubernetes Neo4j Replication Controller to store the DB data. Now I would like to access this Drive to copy its content.
The gcould api offers:
gcloud compute ssh instance-name
but its not an instance its a drive, so how can you connect to it ?
Upvotes: 2
Views: 1356
Reputation: 888
You can't. You should think your disc as a physical disk. If your physical disk is unmounted then you can't access it. If you want to access to Neo4j data then the best way is through your Ne4j instance. Also you can mount this persistent disk in another instance and through it access to your data. Check this to do that.
Update:
If you have access via ssh to the instance where your disc is mounted (Neo4j instance), then you can transfer your data via scp copy to/from your local computer. Take a look here.
Upvotes: 4