https://prefect.io logo
Title
j

John LaRocque

12/29/2022, 7:53 PM
The orion helm chart refers to "internalPostgres" here, but I can't find this key anywhere; is it real? If not, how should I point my orion at an existing/external postgres server - will it switch automatically if I provide an externalHostName?
j

jawnsy

12/29/2022, 8:02 PM
Ah, good catch, that looks like a stale comment, we’ll update it. If useSubChart is false, then we’ll use the externalHostname setting: https://github.com/PrefectHQ/prefect-helm/blob/f111427b1cd854e5b733f0d00c47a512a7f93006/charts/prefect-orion/templates/_helpers.tpl#L25 So make sure you specify
useSubChart: false
, otherwise the chart will deploy bitnami’s postgres chart during installation
j

John LaRocque

12/29/2022, 8:11 PM
Thanks!