From 9ef74560f90dd089f61b3720da2a80e293bb6a0c Mon Sep 17 00:00:00 2001 From: Jamie Zieziula Date: Fri, 16 Sep 2022 16:38:26 -0400 Subject: [PATCH] [orion] Updates pathing for postgresql user (#39) fixes value file --- charts/prefect-agent/README.md | 4 ++-- charts/prefect-orion/README.md | 6 +++--- charts/prefect-orion/values.yaml | 6 ++++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/charts/prefect-agent/README.md b/charts/prefect-agent/README.md index 1b11f3fa..143fc416 100644 --- a/charts/prefect-agent/README.md +++ b/charts/prefect-agent/README.md @@ -1,6 +1,6 @@ # prefect-agent -![Version: 0.0.0](https://img.shields.io/badge/Version-0.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) +![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) Prefect orion application bundle @@ -11,7 +11,7 @@ Prefect orion application bundle | Name | Email | Url | | ---- | ------ | --- | | gabcoyne | | | -| jamiedick | | | +| jamiezieziula | | | ## Source Code diff --git a/charts/prefect-orion/README.md b/charts/prefect-orion/README.md index 12b819dc..d572d993 100644 --- a/charts/prefect-orion/README.md +++ b/charts/prefect-orion/README.md @@ -1,6 +1,6 @@ # prefect-orion -![Version: 0.0.0](https://img.shields.io/badge/Version-0.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) +![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) Prefect orion application bundle @@ -11,7 +11,7 @@ Prefect orion application bundle | Name | Email | Url | | ---- | ------ | --- | | gabcoyne | | | -| jamiedick | | | +| jamiezieziula | | | ## Source Code @@ -56,9 +56,9 @@ Prefect orion application bundle | postgresql.enabled | bool | `true` | | | postgresql.externalHostname | string | `""` | | | postgresql.image.tag | string | `"14.3.0"` | Version tag, corresponds to tags at https://hub.docker.com/r/bitnami/postgresql/ | -| postgresql.initdbUser | string | `"postgres"` | initial postgres user to create | | postgresql.persistence.enabled | bool | `false` | Enables a PVC that stores db between deployments | | postgresql.persistence.size | string | `"8Gi"` | Configures size of postgres PVC | +| postgresql.primary.initdb.user | string | `"postgres"` | | | postgresql.useSubChart | bool | `true` | | | serviceAccount.annotations | object | `{}` | | | serviceAccount.create | bool | `true` | | diff --git a/charts/prefect-orion/values.yaml b/charts/prefect-orion/values.yaml index ced82d92..ce0a31e4 100644 --- a/charts/prefect-orion/values.yaml +++ b/charts/prefect-orion/values.yaml @@ -121,8 +121,10 @@ postgresql: # -- Configures size of postgres PVC size: 8Gi - # -- initial postgres user to create - initdbUser: postgres + # initial postgres user to create + primary: + initdb: + user: postgres image: # -- Version tag, corresponds to tags at https://hub.docker.com/r/bitnami/postgresql/