Skip to content

Commit

Permalink
Postgres 15
Browse files Browse the repository at this point in the history
  • Loading branch information
s148719 committed Nov 6, 2023
1 parent 994a89f commit 7bffcba
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .nais/feature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ azure_access_inbound:
cluster: dev-gcp
database:
dbname: bidrag-behandling-feature
autoResize: false
autoResize: true
tier: db-f1-micro
outbound-access-apps:
- bidrag-beregn-forskudd-rest-feature
Expand Down
2 changes: 1 addition & 1 deletion .nais/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ azure_access_inbound:
cluster: dev-gcp
database:
dbname: bidrag-behandling-main
autoResize: false
autoResize: true
tier: db-f1-micro
outbound-access-apps:
- bidrag-beregn-forskudd-rest
Expand Down
2 changes: 1 addition & 1 deletion .nais/nais.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ spec:
gcp:
sqlInstances:
- name: {{ database.dbname }}
type: POSTGRES_14
type: POSTGRES_15
diskAutoresize: {{ database.autoResize }}
tier: {{ database.tier }}
databases:
Expand Down
2 changes: 1 addition & 1 deletion .nais/prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ azure_access_inbound:
cluster: prod-gcp
database:
dbname: bidrag-behandling
autoResize: false
autoResize: true
tier: db-custom-1-3840
outbound-access-apps:
- bidrag-beregn-forskudd-rest
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.9"
services:
database:
image: postgres:14.5
image: postgres:15.4-alpine
ports:
- "5445:5432"
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class TestContainerRunner : SpringTestRunner() {
companion object {
@Container
protected val postgreSqlDb =
PostgreSQLContainer("postgres:14.5").apply {
PostgreSQLContainer("postgres:15.4").apply {
withDatabaseName("bidrag-behandling")
withUsername("cloudsqliamuser")
withPassword("admin")
Expand Down

0 comments on commit 7bffcba

Please sign in to comment.