Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit 1ad43db

Browse files
fix: use postgres 16 containers for db (#4391)
### Description Use the postgres 16 containers > NOTE: ### Checklist <!-- Kubernetes and Docker Compose MUST be kept in sync. You should not merge a change here without a corresponding change in the other repository, unless it truly is specific to this repository. If uneeded, add link or explanation of why it is not needed here. --> - [ ] [CHANGELOG.md](https://github.com/sourcegraph/sourcegraph/blob/main/CHANGELOG.md) updated - [ ] [K8s Upgrade notes updated](https://github.com/sourcegraph/sourcegraph/blob/main/doc/admin/updates/kubernetes.md) - [x] Sister [deploy-sourcegraph-k8s](https://github.com/sourcegraph/deploy-sourcegraph-docker) change: - [x] Sister [deploy-sourcegraph-docker](https://github.com/sourcegraph/deploy-sourcegraph-docker) change: - [x] All images have a valid tag and SHA256 sum - [x] I acknowledge that [deploy-sourcegraph-k8s](https://github.com/sourcegraph/deploy-sourcegraph-k8s) is now the preferred Kubernetes deployment repository ### Test plan CI <!-- As part of SOC2/GN-104 and SOC2/GN-105 requirements, all pull requests are REQUIRED to provide a "test plan". A test plan is a loose explanation of what you have done or implemented to test this, as outlined in our Testing principles and guidelines: https://docs.sourcegraph.com/dev/background-information/testing_principles Write your test plan here after the "Test plan" header. -->
1 parent 05ebc0e commit 1ad43db

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

base/codeinsights-db/codeinsights-db.Deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ spec:
4242
memory: "50Mi"
4343
containers:
4444
- name: codeinsights
45-
image: index.docker.io/sourcegraph/codeinsights-db:5.9.1590@sha256:4e75b2c463ce1ef3bfeec4bb71a16693df02005e66b9e697859ce61064e08f42
45+
image: index.docker.io/sourcegraph/postgresql-16-codeinsights:insiders
4646
env:
4747
- name: POSTGRES_DB
4848
value: postgres

base/codeintel-db/codeintel-db.Deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ spec:
4343
memory: "50Mi"
4444
containers:
4545
- name: pgsql
46-
image: index.docker.io/sourcegraph/codeintel-db:5.9.1590@sha256:3d5dd36e3af6b643903f507422be19ed1cb1f5f71c4541572d4a8a252e81aeb8
46+
image: index.docker.io/sourcegraph/postgresql-16:insiders
4747
terminationMessagePolicy: FallbackToLogsOnError
4848
readinessProbe:
4949
exec:

base/pgsql/pgsql.Deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ spec:
4343
memory: "50Mi"
4444
containers:
4545
- env:
46-
image: index.docker.io/sourcegraph/postgres-12-alpine:5.9.1590@sha256:3d5dd36e3af6b643903f507422be19ed1cb1f5f71c4541572d4a8a252e81aeb8
46+
image: index.docker.io/sourcegraph/postgresql-16:insiders
4747
terminationMessagePolicy: FallbackToLogsOnError
4848
readinessProbe:
4949
exec:

0 commit comments

Comments
 (0)