specify PersistentVolume selector in postgres.persistence
My cluster has a staticdisk StorageClass where the volumes do not get created by a provisioner.
I normally handle this by writing PersistentVolume and PersistentVolumeClaim specs manually, where the claim has a selector that finds the volume by label, like:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: ci-data
namespace: ci
...
spec:
storageClassName: staticdisk
selector:
matchLabels:
name: "ci-data"
...
This would work with your chart too, if I could add a selector to the claim that it generates. (the volume itself would remain my problem / outside the scope of the chart)
As far as I tried its not possible right now.
This appears fixed in https://github.com/concourse/concourse-chart/commit/b6bb57cb88692e9276a3c9298748551ad24cd03b and should be safe to close.
i'll verify, just give me a week or more cause I read v7.5.0 should be taken with caution