feat: add memory parameter to Deluge values file

This commit is contained in:
gmega 2025-02-14 14:30:56 -03:00
parent 205f926f89
commit f7adf878eb
No known key found for this signature in database
GPG Key ID: 6290D34EAD824B18
2 changed files with 4 additions and 2 deletions

View File

@ -46,9 +46,9 @@ spec:
- containerPort: 6890 - containerPort: 6890
resources: resources:
requests: requests:
memory: 6Gi memory: {{ .Values.experiment.memory | quote }}
limits: limits:
memory: 6Gi memory: {{ .Values.experiment.memory | quote }}
env: env:
- name: CLIENT_POD_NAME - name: CLIENT_POD_NAME
valueFrom: valueFrom:

View File

@ -5,6 +5,8 @@ experiment:
seederSets: 4 seederSets: 4
repetitions: 10 repetitions: 10
memory: "1Gi"
# Experiments are ran as part of groups which may entail several invocations for this Helm chart. # Experiments are ran as part of groups which may entail several invocations for this Helm chart.
# We therefore identify both the experiment within a group, and the group itself. # We therefore identify both the experiment within a group, and the group itself.