Skip to content

Commit fad9e99

Browse files
committed
🔧 [#197] Increase default values open zaak.
1 parent 64903de commit fad9e99

File tree

4 files changed

+25
-12
lines changed

4 files changed

+25
-12
lines changed

charts/openzaak/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.8.1 (2025-03-12)
4+
5+
- [#197] Increase default `replicaCount` for the worker and the web app. Increase the (commented out) resources requests values for the web app, the worker, nginx and celery beat. Increase the default the resources requests values for redis.
6+
37
## 1.8.0 (2025-02-17)
48

59
Stable release with support of [django-setup-configuration](https://github.com/maykinmedia/django-setup-configuration).

charts/openzaak/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: openzaak
33
description: Productiewaardige API's voor Zaakgericht Werken
44

55
type: application
6-
version: 1.8.0
6+
version: 1.8.1
77
appVersion: 1.18.0
88

99
dependencies:

charts/openzaak/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# openzaak
22

3-
![Version: 1.8.0](https://img.shields.io/badge/Version-1.8.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.18.0](https://img.shields.io/badge/AppVersion-1.18.0-informational?style=flat-square)
3+
![Version: 1.8.1](https://img.shields.io/badge/Version-1.8.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.18.0](https://img.shields.io/badge/AppVersion-1.18.0-informational?style=flat-square)
44

55
Productiewaardige API's voor Zaakgericht Werken
66

@@ -139,9 +139,9 @@ Productiewaardige API's voor Zaakgericht Werken
139139
| redis.master.persistence.enabled | bool | `true` | |
140140
| redis.master.persistence.size | string | `"8Gi"` | |
141141
| redis.master.persistence.storageClass | string | `""` | |
142-
| redis.master.resources.requests.cpu | string | `"10m"` | |
143-
| redis.master.resources.requests.memory | string | `"20Mi"` | |
144-
| replicaCount | int | `1` | |
142+
| redis.master.resources.requests.cpu | string | `"250m"` | |
143+
| redis.master.resources.requests.memory | string | `"256Mi"` | |
144+
| replicaCount | int | `2` | |
145145
| resources | object | `{}` | |
146146
| securityContext.capabilities.drop[0] | string | `"ALL"` | |
147147
| securityContext.readOnlyRootFilesystem | bool | `false` | |
@@ -214,6 +214,6 @@ Productiewaardige API's voor Zaakgericht Werken
214214
| worker.livenessProbe.timeoutSeconds | int | `10` | |
215215
| worker.maxWorkerLivenessDelta | string | `""` | |
216216
| worker.podLabels | object | `{}` | |
217-
| worker.replicaCount | int | `1` | |
217+
| worker.replicaCount | int | `2` | |
218218
| worker.resources | object | `{}` | |
219219

charts/openzaak/values.yaml

+15-6
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ configuration:
124124
tags:
125125
redis: true
126126

127-
replicaCount: 1
127+
replicaCount: 2
128128

129129
image:
130130
repository: openzaak/open-zaak
@@ -220,8 +220,8 @@ resources: {}
220220
# cpu: 200m
221221
# memory: 256Mi
222222
# requests:
223-
# cpu: 100m
224-
# memory: 128Mi
223+
# cpu: 250m
224+
# memory: 256Mi
225225

226226
autoscaling:
227227
enabled: false
@@ -378,10 +378,13 @@ settings:
378378
disable2fa: false
379379

380380
worker:
381-
replicaCount: 1
381+
replicaCount: 2
382382
concurrency: 4
383383
podLabels: {}
384384
resources: {}
385+
# requests:
386+
# cpu: 250m
387+
# memory: 512Mi
385388
maxWorkerLivenessDelta: ""
386389
livenessProbe:
387390
enabled: false
@@ -438,6 +441,9 @@ nginx:
438441
failureThreshold: 3
439442
successThreshold: 1
440443
resources: {}
444+
# requests:
445+
# cpu: 250m
446+
# memory: 256Mi
441447

442448
flower:
443449
enabled: false
@@ -473,6 +479,9 @@ beat:
473479
failureThreshold: 6
474480
successThreshold: 1
475481
resources: {}
482+
# requests:
483+
# cpu: 250m
484+
# memory: 256Mi
476485

477486
##################
478487
# Redis subchart #
@@ -488,5 +497,5 @@ redis:
488497
storageClass: ""
489498
resources:
490499
requests:
491-
cpu: 10m
492-
memory: 20Mi
500+
cpu: 250m
501+
memory: 256Mi

0 commit comments

Comments
 (0)