From 1c8dd9cc6f820255a3316fa5a7941bd9c992d7a4 Mon Sep 17 00:00:00 2001 From: Alexander Olofsson Date: Wed, 16 Oct 2019 15:35:54 +0200 Subject: [PATCH] funkwhale: Document RWO affinity needs --- charts/funkwhale/values.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/charts/funkwhale/values.yaml b/charts/funkwhale/values.yaml index 848cdc0..8475f95 100644 --- a/charts/funkwhale/values.yaml +++ b/charts/funkwhale/values.yaml @@ -76,6 +76,12 @@ persistence: enabled: false # existingClaim: netbox-data # storageClass: "-" + + # Note; Using ReadWriteOnce for persistence will require the addition of + # a required affinity for the celery worker, as well as the use of only a + # single api replica. + # + # An example is provided for the worker affinity accessMode: ReadWriteMany size: 1Gi @@ -189,5 +195,14 @@ celery: tolerations: [] + # Example provided for always co-locating with the main application, for + # use with ReadWriteOnce volumes. affinity: {} + # requiredDuringSchedulingIgnoredDuringExecution: + # - labelSelector: + # matchExpressions: + # - key: audio.funkwhale/component + # operator: In + # values: + # - app