Hello, i dont want to use persistent storage with my pangeo deployment. I am not sure but it looks like its only required for the hub db? i can see topics about this but dont know which values to change? Potentially hub.db.type and/or sqlite-pvc and/or hub.db.pvc? What should those values be?
Looks like I need to pass values via config.yaml, as per this link So I just need to launch an ephemeral hub each time?
Thanks
Setting hub.db.type: sqlite-memory removes the need for a hub persistent storage.
To disable persistent storage for the spawned singleuser servers set singleuser.storage.type: none
I think @manics is spot on!
Thanks @manics , that is indeed spot on. The singleuser link to doc makes it easy to implement, for the hub.db.type i have included my snippet as used in my vaules.yaml
hub:
db:
type: sqlite-memory
Most helpful comment
Setting
hub.db.type: sqlite-memoryremoves the need for a hub persistent storage.To disable persistent storage for the spawned singleuser servers set
singleuser.storage.type: none