Skip to content

Commit f6e20dd

Browse files
authored
[Bugfix] [Platform] Increase memory limit for Inventory (#1973)
1 parent 9d214e5 commit f6e20dd

File tree

23 files changed

+253
-35
lines changed

23 files changed

+253
-35
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Change Log
22

33
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
4+
- (Bugfix) (Platform) Increase memory limit for Inventory
45

56
## [1.3.1](https://github.com/arangodb/kube-arangodb/tree/1.3.1) (2025-10-07)
67
- (Documentation) Add ArangoPlatformStorage Docs & Examples

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Flags:
201201
--internal.scaling-integration Enable Scaling Integration
202202
--kubernetes.burst int Burst for the k8s API (default 256)
203203
--kubernetes.max-batch-size int Size of batch during objects read (default 256)
204-
--kubernetes.qps float32 Number of queries per second for k8s API (default 32)
204+
--kubernetes.qps float32 Number of queries per second for k8s API. If set to 0 or less, API calls won't be throttled (default 32)
205205
--leader.label.skip Skips Leader Label for the Pod
206206
--log.format string Set log format. Allowed values: 'pretty', 'JSON'. If empty, default format is used (default "pretty")
207207
--log.level stringArray Set log levels in format <level> or <logger>=<level>. Possible loggers: action, agency, api-server, assertion, backup-operator, chaos-monkey, crd, deployment, deployment-ci, deployment-reconcile, deployment-replication, deployment-resilience, deployment-resources, deployment-storage, deployment-storage-pc, deployment-storage-service, generic-parent-operator, helm, http, inspector, integration-authn-v1, integration-config-v1, integration-envoy-auth-v3, integration-envoy-auth-v3-impl-auth-bearer, integration-envoy-auth-v3-impl-auth-cookie, integration-envoy-auth-v3-impl-custom-openid, integration-envoy-auth-v3-impl-pass-mode, integration-meta-v1, integration-scheduler-v2, integration-shutdown-v1, integration-storage-v1-s3, integration-storage-v2, integrations, k8s-client, kubernetes, kubernetes-access, kubernetes-client, kubernetes-informer, monitor, networking-route-operator, operator, operator-arangojob-handler, operator-v2, operator-v2-event, operator-v2-worker, panics, platform-chart-operator, platform-pod-shutdown, platform-service-operator, platform-storage-operator, pod_compare, root, root-event-recorder, scheduler-batchjob-operator, scheduler-cronjob-operator, scheduler-deployment-operator, scheduler-pod-operator, scheduler-profile-operator, server, server-authentication, webhook (default [info])
@@ -231,6 +231,7 @@ Flags:
231231
--server.tls-secret-name string Name of secret containing tls.crt & tls.key for HTTPS server (if empty, self-signed certificate is used)
232232
--shutdown.delay duration The delay before running shutdown handlers (default 2s)
233233
--shutdown.timeout duration Timeout for shutdown handlers (default 30s)
234+
--threads int Number of the worker threads (default 16)
234235
--timeout.agency duration The Agency read timeout (default 10s)
235236
--timeout.arangod duration The request timeout to the ArangoDB (default 5s)
236237
--timeout.arangod-check duration The version check request timeout to the ArangoDB (default 2s)

chart/kube-arangodb-arm64/templates/deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ spec:
9292
imagePullPolicy: {{ .Values.operator.imagePullPolicy }}
9393
image: {{ .Values.operator.image }}
9494
args:
95+
- --threads={{ .Values.operator.threads }}
9596
{{- if .Values.certificate.enabled }}
9697
- --server.tls-secret-name={{ template "kube-arangodb.operatorName" . }}-cert
9798
- --api.tls-secret-name={{ template "kube-arangodb.operatorName" . }}-cert

chart/kube-arangodb-arm64/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ operator:
2525
allowChaos: false
2626
nodeSelector: {}
2727
enableCRDManagement: true
28+
enableCRDCreation: true
29+
threads: 8
2830
features:
2931
deployment: true
3032
deploymentReplications: true

chart/kube-arangodb-enterprise-arm64/templates/deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ spec:
9292
imagePullPolicy: {{ .Values.operator.imagePullPolicy }}
9393
image: {{ .Values.operator.image }}
9494
args:
95+
- --threads={{ .Values.operator.threads }}
9596
{{- if .Values.certificate.enabled }}
9697
- --server.tls-secret-name={{ template "kube-arangodb.operatorName" . }}-cert
9798
- --api.tls-secret-name={{ template "kube-arangodb.operatorName" . }}-cert

chart/kube-arangodb-enterprise-arm64/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ operator:
2525
allowChaos: false
2626
nodeSelector: {}
2727
enableCRDManagement: true
28+
enableCRDCreation: true
29+
threads: 8
2830
features:
2931
deployment: true
3032
deploymentReplications: true

chart/kube-arangodb-enterprise/templates/deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ spec:
9292
imagePullPolicy: {{ .Values.operator.imagePullPolicy }}
9393
image: {{ .Values.operator.image }}
9494
args:
95+
- --threads={{ .Values.operator.threads }}
9596
{{- if .Values.certificate.enabled }}
9697
- --server.tls-secret-name={{ template "kube-arangodb.operatorName" . }}-cert
9798
- --api.tls-secret-name={{ template "kube-arangodb.operatorName" . }}-cert

chart/kube-arangodb-enterprise/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ operator:
2525
allowChaos: false
2626
nodeSelector: {}
2727
enableCRDManagement: true
28+
enableCRDCreation: true
29+
threads: 8
2830
features:
2931
deployment: true
3032
deploymentReplications: true

chart/kube-arangodb/templates/deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ spec:
9292
imagePullPolicy: {{ .Values.operator.imagePullPolicy }}
9393
image: {{ .Values.operator.image }}
9494
args:
95+
- --threads={{ .Values.operator.threads }}
9596
{{- if .Values.certificate.enabled }}
9697
- --server.tls-secret-name={{ template "kube-arangodb.operatorName" . }}-cert
9798
- --api.tls-secret-name={{ template "kube-arangodb.operatorName" . }}-cert

chart/kube-arangodb/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ operator:
2727
nodeSelector: {}
2828
enableCRDManagement: true
2929
enableCRDCreation: true
30+
threads: 8
3031
features:
3132
deployment: true
3233
deploymentReplications: true

0 commit comments

Comments
 (0)