What the persistent volume used for /data should be. Should it be RWX or RWO? #699
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
There is a lack of documentation on what persistence exactly does. I could understand that data wont survive pod restarts if persistence is off.
For example, is the persistence folder shared across pods? If so is it expected that multiple pods will mount the folder in Writeable state?
I example shows access mode set to RWO
036b469ff9/values.yaml (L275)
Should it be RWX for most practical cases.
Persistence stores data that should be persisted - I am not sure really I understand what you mean by "what persistence does". You can inspect yourself what is stored under the persistent directory (e.g. repo data).
If you have/want multiple replicas, yes.
If you have/want multiple replicas, yes.
No, only if you want to run in HA = multiple replicas. The default is
replicas: 1
and hence also uses a RWO. Not all environments have access to a RWX storage class and using it should be a deliberate decision.Closing due to missing response, maybe all Q's were answered (?).