From 74eac38af3cb7c9f65306f6c151c4dad07a2d427 Mon Sep 17 00:00:00 2001
From: Dustin Shapiro <dustinshapiro@gmail.com>
Date: Thu, 2 Feb 2023 21:49:08 -0500
Subject: [PATCH] Bump Postgres to 14.6 (#12015)

### Summary & Motivation
Postgres v9.6.21 reached end of life a few years back. Let's bring the
version up to a supported one.

### How I Tested These Changes
I overrode this tag value in our Helm chart in dev and production, and
all seems fine. I will say, though, that we're using an external
postgres DB, so only our init container is going to run this image.

Co-authored-by: Dusty Shapiro <dusty@rvvup.com>
---
 helm/dagster/values.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm/dagster/values.yaml b/helm/dagster/values.yaml
index fe33843cfa614..ec5d0ac7667d7 100644
--- a/helm/dagster/values.yaml
+++ b/helm/dagster/values.yaml
@@ -741,7 +741,7 @@ postgresql:
   # Used by init container to check that db is running. (Even if enabled:false)
   image:
     repository: "library/postgres"
-    tag: "9.6.21"
+    tag: "14.6"
     pullPolicy: IfNotPresent
 
   # set this PostgreSQL hostname when using an external PostgreSQL database