File tree Expand file tree Collapse file tree 5 files changed +10
-4
lines changed
test/kotlin/no/nav/klage/document/repositories Expand file tree Collapse file tree 5 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,10 @@ ingresses:
2
2
- https://kabal-smart-editor-api.intern.dev.nav.no
3
3
externalHosts :
4
4
springProfile : dev-gcp
5
- db_tier : db-custom-1-3840
5
+ db_tier : db-f1-micro
6
6
db_size : 10
7
- db_ha : true
7
+ db_ha : false
8
+ db_type : POSTGRES_15
8
9
tenant : trygdeetaten.no
9
10
10
11
envs :
Original file line number Diff line number Diff line change 12
12
image : {{image}}
13
13
gcp :
14
14
sqlInstances :
15
- - type : POSTGRES_12
15
+ - type : {{db_type}}
16
16
maintenanceWindow :
17
17
day : 1
18
18
hour : 3
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ springProfile: prod-gcp
5
5
db_tier : db-custom-4-15360
6
6
db_size : 10
7
7
db_ha : true
8
+ db_type : POSTGRES_12
8
9
tenant : nav.no
9
10
10
11
envs :
Original file line number Diff line number Diff line change
1
+ spring :
2
+ datasource :
3
+ hikari :
4
+ maximum-pool-size : 5
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ class TestPostgresqlContainer private constructor() :
6
6
PostgreSQLContainer <TestPostgresqlContainer ?>(IMAGE_VERSION ) {
7
7
8
8
companion object {
9
- private const val IMAGE_VERSION = " postgres:12.6 "
9
+ private const val IMAGE_VERSION = " postgres:15.4 "
10
10
11
11
private val CONTAINER : TestPostgresqlContainer = TestPostgresqlContainer ()
12
12
You can’t perform that action at this time.
0 commit comments