After running
bash configure-data-access.sh
I get a yaml file eoapi/generated-values.yaml
The file is apparently incorrect in that it has the value:
postgrescluster.postGISVersion: 3.4
whereas the version number should actually be a string:
postgrescluster.postGISVersion: "3.4"
Running helm renders:
$ helm upgrade -i eoapi eoapi/eoapi --namespace data-access --create-namespace --values eoapi/generated-values.yaml
Error: UPGRADE FAILED: values don't meet the specifications of the schema(s) in the following chart(s):
eoapi:
- postgrescluster.postGISVersion: Invalid type. Expected: string, given: number
After putting the value in quotes it works fine.