Skip to content
This repository was archived by the owner on Feb 5, 2026. It is now read-only.

Commit 605a091

Browse files
authored
NE-16615 Expose mgmtworker.max_workers (cloudify-cosmo#148)
1 parent 555f29f commit 605a091

3 files changed

Lines changed: 5 additions & 0 deletions

File tree

cloudify-services/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ $ helm uninstall cloudify-services -n NAMESPACE
174174
| mgmtworker.access.local_cluster | bool | `true` | |
175175
| mgmtworker.image | string | `"263721492972.dkr.ecr.eu-west-1.amazonaws.com/cloudify-manager-mgmtworker:latest-x86_64"` | |
176176
| mgmtworker.imagePullPolicy | string | `"IfNotPresent"` | |
177+
| mgmtworker.max_workers | int | `10` | The Mgmtworker's MAX_WORKER settings, controlling the amount of concurrent operations that can be run |
177178
| mgmtworker.replicas | int | `1` | |
178179
| nameOverride | string | `""` | |
179180
| nginx.http_port | int | `80` | |

cloudify-services/templates/mgmtworker.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ spec:
9999
env:
100100
- name: RUNTIME_ENVIRONMENT
101101
value: "k8s"
102+
- name: MAX_WORKERS
103+
value: {{ .Values.mgmtworker.max_workers | quote }}
102104
envFrom:
103105
- configMapRef:
104106
name: mgmtworker-envvars

cloudify-services/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ mgmtworker:
8181
replicas: 1
8282
image: 263721492972.dkr.ecr.eu-west-1.amazonaws.com/cloudify-manager-mgmtworker:latest-x86_64
8383
imagePullPolicy: IfNotPresent
84+
# -- The Mgmtworker's MAX_WORKER settings, controlling the amount of concurrent operations that can be run
85+
max_workers: 10
8486
access:
8587
local_cluster: true
8688

0 commit comments

Comments
 (0)