From 8cb44f7ba42ae16c14d41bb9851bb62a198405ec Mon Sep 17 00:00:00 2001 From: Jamie Zieziula Date: Mon, 19 Sep 2022 10:35:39 -0400 Subject: [PATCH] [orion] Add prefectConfig to values file (#40) * add prefectConfig value * empty dict --- charts/prefect-orion/README.md | 1 + charts/prefect-orion/values.yaml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/charts/prefect-orion/README.md b/charts/prefect-orion/README.md index c3ea3fbc..f862b39e 100644 --- a/charts/prefect-orion/README.md +++ b/charts/prefect-orion/README.md @@ -61,6 +61,7 @@ Prefect orion application bundle | postgresql.persistence.size | string | `"8Gi"` | Configures size of postgres PVC | | postgresql.primary.initdb.user | string | `"postgres"` | | | postgresql.useSubChart | bool | `true` | | +| prefectConfig | object | `{}` | | | serviceAccount.annotations | object | `{}` | | | serviceAccount.create | bool | `true` | | | serviceAccount.name | string | `""` | | diff --git a/charts/prefect-orion/values.yaml b/charts/prefect-orion/values.yaml index 5d17184a..08361f12 100644 --- a/charts/prefect-orion/values.yaml +++ b/charts/prefect-orion/values.yaml @@ -133,6 +133,11 @@ postgresql: # -- Version tag, corresponds to tags at https://hub.docker.com/r/bitnami/postgresql/ tag: 14.3.0 +# Values placed here will result in environment variable definitions +# starting with "PREFECT_ORION_" and will be passed to relevant +# services +prefectConfig: {} + serviceAccount: # Specifies whether a service account should be created create: true