github.com/vshn/k8ify@v1.1.2-0.20240502214202-6c9ed3ef0bf4/tests/golden/storage/compose.yml (about) 1 services: 2 default: 3 image: nginx 4 volumes: 5 - default-data:/data 6 7 default-shared: 8 image: nginx 9 volumes: 10 - default-shared-data:/data 11 12 share-0: 13 image: nginx 14 volumes: 15 - shared-data:/data 16 share-1: 17 image: nginx 18 volumes: 19 - shared-data:/data 20 21 singleton-db: 22 labels: 23 k8ify.singleton: true 24 image: nginx 25 volumes: 26 - singleton-db-storage:/data 27 28 29 volumes: 30 default-data: {} 31 default-shared-data: 32 labels: 33 k8ify.shared: true 34 shared-data: 35 labels: 36 k8ify.shared: true 37 singleton-db-storage: 38 labels: 39 k8ify.singleton: true