Breaking: Adjust default postgres version

This commit is contained in:
Michael Jerger 2025-04-09 08:16:49 +02:00
parent 8ac0a662d6
commit 59e64701f6

View file

@ -27,12 +27,12 @@
(def postgres-function (s/keys :opt-un [::deserializer ::optional]))
(def default-config (merge ns/default-config
{:postgres-image "postgres:13"
{:postgres-image "postgres:16"
:postgres-size :2gb
:db-name "postgres"
:postgres-data-volume-path "/var/postgres"
:pv-storage-size-gb 10
:pvc-storage-class-name "manual"}))
:pv-storage-size-gb 20
:pvc-storage-class-name :local-path}))
(defn-spec generate-configmap map?
[& config (s/? pg-config?)]