ek
10/13/2021, 5:36 PMNAMESPACE=prefect-server
VERSION=2021.09.02
kubectl create namespace $NAMESPACE
helm install -n $NAMESPACE $NAMESPACE \
--version $VERSION \
--values ./helm/values.yaml \
prefecthq/prefect-server
Here is my helm values.yml
postgresql:
postgresqlDatabase: postgres
postgresqlUsername: postgres
existingSecret: [secret]
servicePort: 5432
externalHostname: "x.x.x.x"
useSubChart: false
Is there anything else I'm missing to set in my value.yml? much appreciate it!nicholas
ek
10/13/2021, 10:06 PMexistingSecret: postgres-password
as a key. thank you again!nicholas