From b851b52c876008a0e9f3f3cd81112adcf277a63f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 7 Sep 2026 22:00:35 +0000 Subject: [PATCH] feat(deps): update library/postgres docker tag to v18 --- apis/authstacks/definition.yaml | 2 +- functions/render/000-state-init.yaml.gotmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apis/authstacks/definition.yaml b/apis/authstacks/definition.yaml index 423c168..5715640 100644 --- a/apis/authstacks/definition.yaml +++ b/apis/authstacks/definition.yaml @@ -187,7 +187,7 @@ spec: description: Postgres major version. Defaults to "17". type: string # renovate: datasource=docker depName=library/postgres registryUrl=https://index.docker.io - default: "17" + default: "18" parameters: description: postgres.conf parameters merged into the composed Cluster.spec.postgresql.parameters. type: object diff --git a/functions/render/000-state-init.yaml.gotmpl b/functions/render/000-state-init.yaml.gotmpl index c17b382..1c9af73 100644 --- a/functions/render/000-state-init.yaml.gotmpl +++ b/functions/render/000-state-init.yaml.gotmpl @@ -97,7 +97,7 @@ {{- if not $embStorage.class }}{{- $embStorage = set $embStorage "class" "psql" }}{{- end }} {{- $embPostgres := $dbEmbedded.postgresql | default dict }} # renovate: datasource=docker depName=library/postgres registryUrl=https://index.docker.io -{{- if not $embPostgres.version }}{{- $embPostgres = set $embPostgres "version" "17" }}{{- end }} +{{- if not $embPostgres.version }}{{- $embPostgres = set $embPostgres "version" "18" }}{{- end }} {{- $embInstances := 1 }} {{- if hasKey $dbEmbedded "instances" }}{{- $embInstances = $dbEmbedded.instances }}{{- end }} {{- $embSslMode := $dbEmbedded.sslMode | default "disable" }}