Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ephemeralStorage options missing in pega installer image #775

Merged
merged 13 commits into from
Jul 16, 2024
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,11 @@ spec:
requests:
cpu: "{{ .root.Values.resources.requests.cpu }}"
memory: "{{ .root.Values.resources.requests.memory }}"
ephemeral-storage: "{{ .root.Values.resources.requests.ephemeralStorage | default "0G" }}"
limits:
cpu: "{{ .root.Values.resources.limits.cpu }}"
memory: "{{ .root.Values.resources.limits.memory }}"
ephemeral-storage: "{{ .root.Values.resources.limits.ephemeralStorage | default "0G" }}"
volumeMounts:
{{- if .root.Values.installerMountVolumeClaimName }}
- name: {{ template "pegaInstallerMountVolume" }}
Expand Down
5 changes: 4 additions & 1 deletion charts/pega/charts/installer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,17 @@ upgrade:
# Specify automaticResumeEnabled to support resuming rules_upgrade from point of failure. You can use this functionality only when you use "custom" upgradeType.
automaticResumeEnabled: "false"

# Memory and CPU settings for installer
# Memory, CPU, and ephemeral storage settings for installer
# Ephemeral storage recommended size is 10G
resources:
requests:
memory: "5Gi"
cpu: 1
# ephemeralStorage: ""
limits:
memory: "6Gi"
cpu: 2
# ephemeralStorage: ""

shareProcessNamespace: false

Expand Down
Loading