What would be an ideal way to share writable volume across containers for a web server?
问题 The application in question is Wordpress, I need to create replicas for rolling deployment / scaling purposes. It seem can't create more then 1 instance of the same container, if it uses a persistent volume (GCP term): The Deployment "wordpress" is invalid: spec.template.spec.volumes[0].gcePersistentDisk.readOnly: Invalid value: false: must be true for replicated pods > 1; GCE PD can only be mounted on multiple machines if it is read-only What are my options? There will be occasional writes