From ce72dc84eb30a260344b0b74ad5537ce5aae5c3d Mon Sep 17 00:00:00 2001 From: jem Date: Fri, 8 Oct 2021 11:41:46 +0200 Subject: [PATCH] pin postgres to version 13 --- README.md | 4 +++- doc/Postgres.md | 5 +++++ src/main/resources/postgres/deployment.yaml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 doc/Postgres.md diff --git a/README.md b/README.md index e23de33..01491dd 100644 --- a/README.md +++ b/README.md @@ -24,13 +24,15 @@ Our convention 4 kubernetes c4k-* tools combine the advantages of both approache ## Refactoring & Module Overview -| Module | Version | common postgres | frontend script | provider adapter | [backup as deployment](https://gitlab.com/domaindrivenarchitecture/c4k-jira/-/merge_requests/1) | +| Module | Version | common postgres | frontend script | provider adapter | [backup as deployment][bak1] | |------------------|---------|:---------------:|:---------------:|:----------------:|:----------------:| | c4k-mastodon-bot | 0.1 | - | | | | | c4k-keycloak | 0.2 | | | | | | c4k-jira | 1.0 | x | x | | x | | c4k-nextcloud | 0.1 | | | | | +[bak1]: https://gitlab.com/domaindrivenarchitecture/c4k-jira/-/merge_requests/1 + ## License Copyright © 2021 meissa GmbH diff --git a/doc/Postgres.md b/doc/Postgres.md new file mode 100644 index 0000000..d6b81dc --- /dev/null +++ b/doc/Postgres.md @@ -0,0 +1,5 @@ +# Postgres Resources +* https://www.enterprisedb.com/postgres-tutorials/how-tune-postgresql-memory +* https://blog.crunchydata.com/blog/postgresql-14-on-kubernetes +* https://github.com/CrunchyData/postgres-operator +* https://www.postgresql.org/about/news/kubegres-is-available-as-open-source-2197/ \ No newline at end of file diff --git a/src/main/resources/postgres/deployment.yaml b/src/main/resources/postgres/deployment.yaml index 5b4bb4d..95f7410 100644 --- a/src/main/resources/postgres/deployment.yaml +++ b/src/main/resources/postgres/deployment.yaml @@ -14,7 +14,7 @@ spec: app: postgresql spec: containers: - - image: postgres + - image: postgres:13 name: postgresql env: - name: POSTGRES_USER