Skip to content

Commit 692af9a

Browse files
committed
deployment consistency
1 parent 4d0ba9d commit 692af9a

File tree

7 files changed

+9
-0
lines changed

7 files changed

+9
-0
lines changed

deployment/docker_compose/docker-compose.dev.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,7 @@ services:
378378

379379
relational_db:
380380
image: postgres:15.2-alpine
381+
shm_size: 1g
381382
command: -c 'max_connections=250'
382383
restart: always
383384
environment:

deployment/docker_compose/docker-compose.gpu-dev.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@ services:
324324

325325
relational_db:
326326
image: postgres:15.2-alpine
327+
shm_size: 1g
327328
command: -c 'max_connections=250'
328329
restart: always
329330
environment:

deployment/docker_compose/docker-compose.multitenant-dev.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@ services:
351351

352352
relational_db:
353353
image: postgres:15.2-alpine
354+
shm_size: 1g
354355
command: -c 'max_connections=250'
355356
restart: always
356357
environment:

deployment/docker_compose/docker-compose.prod-cloud.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ services:
8888

8989
relational_db:
9090
image: postgres:15.2-alpine
91+
shm_size: 1g
9192
command: -c 'max_connections=250'
9293
restart: always
9394
# POSTGRES_USER and POSTGRES_PASSWORD should be set in .env file

deployment/docker_compose/docker-compose.prod-no-letsencrypt.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ services:
166166

167167
relational_db:
168168
image: postgres:15.2-alpine
169+
shm_size: 1g
169170
command: -c 'max_connections=250'
170171
restart: always
171172
# POSTGRES_USER and POSTGRES_PASSWORD should be set in .env file

deployment/docker_compose/docker-compose.search-testing.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ services:
148148

149149
relational_db:
150150
image: postgres:15.2-alpine
151+
shm_size: 1g
151152
command: -c 'max_connections=250'
152153
restart: always
153154
environment:

deployment/helm/charts/onyx/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ postgresql:
77
persistence:
88
storageClass: ""
99
size: 5Gi
10+
shmVolume:
11+
enabled: true
12+
sizeLimit: 1Gi
1013
enabled: true
1114
auth:
1215
existingSecret: onyx-secrets

0 commit comments

Comments
 (0)