Migrate staging next version database to a kubernetes service managed by a postgresql operator
- Determine which postgresql operator to test: cloudnative (see comment below)
-
POC with cloudnative's postgres operator (Note [1])
- Install a postgresql cluster (tested)
- Monitoring through prometheus/grafana (tested)
- Connect to postgres (psql) (tested)
- Import existing databases (tested)
-
Backup
- configure wal (minio test)
- backup
- restore
- Rolling update (read)
- Replication
- Upgrade operator in a cluster (read/tested)
- Postgresql configuration change
- Local tests on test-staging-rke2
- swh/infra/ci-cd/swh-charts!411 (closed): Replicate the cluster installed through a chart in test-staging-rke2
-
swh/infra/ci-cd/swh-charts!416 (merged): Test: switch over the swh-cassandra-next-version services to run with kube managed dbs
- web
- vault
- metallb: Allow it to attach specific ip to service
[1] https://hedgedoc.softwareheritage.org/3kj8tLHSTh-dMBsI5_Ehww
Designs
- Show closed items
Activity
-
Newest first Oldest first
-
Show all activity Show comments only Show history only
- Antoine R. Dumont marked this issue as related to #5260
marked this issue as related to #5260
- Antoine R. Dumont changed title from Migrate the staging database to a kubernetes service managed by a postgresql operator (poc/validation/...) to Migrate staging database to a kubernetes service managed by a postgresql operator
changed title from Migrate the staging database to a kubernetes service managed by a postgresql operator (poc/validation/...) to Migrate staging database to a kubernetes service managed by a postgresql operator
- Author Owner
- Determine postgres operator to test
Documentation on the various postgresql operator.
According to the following comparison matrix, 2 contenders are left cloudnative's and zalando's. The documentation site feels more exhaustive for the former (cloudnative) though so let's try it.
Resulting comparison matrix (source code [2]):
[2] source of the table (org-mode table then export to markdown):
|--------------+---------+------------+--------------+----+----------+---------+------------+-------+----------+----------+--------+----+------+------+--------------------------------------------------------+-----------------------------------------------------------------------+-----------------------------------------------------------------------------------| | operator | Helm | Postgresql | Kube | HA | Disaster | Rolling | Monitoring | Bare | minikube | License | Issues | PR | star | fork | homepage | doc | Annex | | | support | versions | versions | | Recovery | Upgrade | | metal | | | | | | | | | | |--------------+---------+------------+--------------+----+----------+---------+------------+-------+----------+----------+--------+----+------+------+--------------------------------------------------------+-----------------------------------------------------------------------+-----------------------------------------------------------------------------------| | crunchy-data | X | >= 13 | 1.25-1.28 | X | X | X | X | ? | ? | Apache-2 | 114 | 10 | 3.7k | 573 | https://github.com/CrunchyData/postgres-operator | https://access.crunchydata.com/documentation/postgres-operator/latest | | |--------------+---------+------------+--------------+----+----------+---------+------------+-------+----------+----------+--------+----+------+------+--------------------------------------------------------+-----------------------------------------------------------------------+-----------------------------------------------------------------------------------| | zalando | X | >= 11 | 1.12-1.28 | X | X | X | X | X | X | MIT | 532 | 66 | 4k | 939 | https://github.com/zalando/postgres-operator | https://postgres-operator.readthedocs.io/en/latest/ | | |--------------+---------+------------+--------------+----+----------+---------+------------+-------+----------+----------+--------+----+------+------+--------------------------------------------------------+-----------------------------------------------------------------------+-----------------------------------------------------------------------------------| | cloudnative | X | >=12 | 1.27-1.28 | X | X | X | X | X | X | Apache-2 | 207 | 64 | 3.4k | 237 | https://github.com/cloudnative-pg/cloudnative-pg | https://cloudnative-pg.io/ | https://cloudnative-pg.io/documentation/current/#main-features | |--------------+---------+------------+--------------+----+----------+---------+------------+-------+----------+----------+--------+----+------+------+--------------------------------------------------------+-----------------------------------------------------------------------+-----------------------------------------------------------------------------------| | stackgress | X | >= 12 | 1.18 & 1.19? | X | X | ? | X | ? | X | AGPL-3 | X | 1 | 827 | 49 | https://github.com/ongres/stackgres/ | https://stackgres.io/ | | |--------------+---------+------------+--------------+----+----------+---------+------------+-------+----------+----------+--------+----+------+------+--------------------------------------------------------+-----------------------------------------------------------------------+-----------------------------------------------------------------------------------| | percona | X | >= 12 | ? | X | X | ? | X | ? | X | Apache-2 | 9 | 22 | 244 | 47 | https://github.com/percona/percona-postgresql-operator | https://docs.percona.com/percona-operator-for-postgresql/2.0/ | comparison matrix: | | | | | | | | | | | | | | | | | | | https://docs.percona.com/percona-operator-for-postgresql/2.0/compare.html#backups | |--------------+---------+------------+--------------+----+----------+---------+------------+-------+----------+----------+--------+----+------+------+--------------------------------------------------------+-----------------------------------------------------------------------+-----------------------------------------------------------------------------------|
Edited by Antoine R. Dumont - Antoine R. Dumont marked the checklist item Determine which postgresql operator to test as completed
marked the checklist item Determine which postgresql operator to test as completed
- Antoine R. Dumont changed the description
changed the description
- Antoine R. Dumont mentioned in issue #5260
mentioned in issue #5260
- Antoine R. Dumont mentioned in commit swh/devel/snippets@6b567984
mentioned in commit swh/devel/snippets@6b567984
- Author Owner
Steps done successfully so far:
- Install of a bare postgresql cluster
- Adding a pooler (pbbouncer) in front of it
- Import databases from an existing db (through initdb)
- External access to the instance
Remaining tests (supported from the documentation):
- backups
- restore backups
- replication
Requirements:
- for import, use of the 'postgres' user
Limitations encountered so far:
- import: use a direct connection to the postgresql db (passing through pgbouncer will fail the import with non-explicit messages)
- access to database:
- load-balancer requires an "externalTrafficPolicy" set to "Cluster" (and other cluster's load-balancers must have that same policy [1] [2]) if we want it to have an external ip set
- or we must have another dedicated external IP (metallb's IP address pool) for it (to avoid configuration change in the other cluster's load-balancer)
- beware the network policies in the namespace where the db pods are installed, they can prevent the secondary replicas to be spawned [3]
[1] some have the "Local" policy which prevents the load-balancer to have an external ip (so not accessible).
[2] "Local" policy means we keep the source ip in the logs, otherwise, it's changed with internal cluster ip.
Edited by Antoine R. Dumont - Antoine R. Dumont changed the description
changed the description
- Antoine R. Dumont changed the description
changed the description
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/k8s-clusters-conf@250611cb
mentioned in commit swh/infra/ci-cd/k8s-clusters-conf@250611cb
- Antoine R. Dumont mentioned in merge request swh/infra/ci-cd/k8s-clusters-conf!43 (merged)
mentioned in merge request swh/infra/ci-cd/k8s-clusters-conf!43 (merged)
- Antoine R. Dumont changed the description
changed the description
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/k8s-clusters-conf@2e6c20c9
mentioned in commit swh/infra/ci-cd/k8s-clusters-conf@2e6c20c9
- Antoine R. Dumont changed the description
changed the description
- Author Owner
Opened [1] with my offline notes so far.
[1] https://hedgedoc.softwareheritage.org/3kj8tLHSTh-dMBsI5_Ehww
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@64f37bd5
mentioned in commit swh/infra/ci-cd/swh-charts@64f37bd5
- Antoine R. Dumont mentioned in merge request swh/infra/ci-cd/swh-charts!411 (closed)
mentioned in merge request swh/infra/ci-cd/swh-charts!411 (closed)
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@4ef32542
mentioned in commit swh/infra/ci-cd/swh-charts@4ef32542
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@a05be881
mentioned in commit swh/infra/ci-cd/swh-charts@a05be881
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@399ccb44
mentioned in commit swh/infra/ci-cd/swh-charts@399ccb44
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@2149cae4
mentioned in commit swh/infra/ci-cd/swh-charts@2149cae4
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@c24b67f3
mentioned in commit swh/infra/ci-cd/swh-charts@c24b67f3
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@9012a79b
mentioned in commit swh/infra/ci-cd/swh-charts@9012a79b
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@50f31245
mentioned in commit swh/infra/ci-cd/swh-charts@50f31245
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@5ce4469b
mentioned in commit swh/infra/ci-cd/swh-charts@5ce4469b
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@d80b6a75
mentioned in commit swh/infra/ci-cd/swh-charts@d80b6a75
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@dfb38d38
mentioned in commit swh/infra/ci-cd/swh-charts@dfb38d38
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/k8s-clusters-conf@ea0cdafb
mentioned in commit swh/infra/ci-cd/k8s-clusters-conf@ea0cdafb
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@bdb7ec4c
mentioned in commit swh/infra/ci-cd/swh-charts@bdb7ec4c
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@6d4cbb6f
mentioned in commit swh/infra/ci-cd/swh-charts@6d4cbb6f
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@4f01352b
mentioned in commit swh/infra/ci-cd/swh-charts@4f01352b
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@f19d4473
mentioned in commit swh/infra/ci-cd/swh-charts@f19d4473
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@f374a872
mentioned in commit swh/infra/ci-cd/swh-charts@f374a872
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@5c32a04d
mentioned in commit swh/infra/ci-cd/swh-charts@5c32a04d
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@99154623
mentioned in commit swh/infra/ci-cd/swh-charts@99154623
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@1e9dd1ae
mentioned in commit swh/infra/ci-cd/swh-charts@1e9dd1ae
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@9c94c3d9
mentioned in commit swh/infra/ci-cd/swh-charts@9c94c3d9
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@85e9c1d7
mentioned in commit swh/infra/ci-cd/swh-charts@85e9c1d7
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@ab92940e
mentioned in commit swh/infra/ci-cd/swh-charts@ab92940e
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@b9465588
mentioned in commit swh/infra/ci-cd/swh-charts@b9465588
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@3666e89f
mentioned in commit swh/infra/ci-cd/swh-charts@3666e89f
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@37752d06
mentioned in commit swh/infra/ci-cd/swh-charts@37752d06
- Antoine R. Dumont mentioned in commit swh/infra/ci-cd/swh-charts@4da1e0f0
mentioned in commit swh/infra/ci-cd/swh-charts@4da1e0f0