Skip to content

Commit

Permalink
ephemeralStorage options missing in pega installer image (#775)
Browse files Browse the repository at this point in the history
* BUG-872590 added ephemeralStorage options in pega installer image

* BUG-872590 setting defaults to ephemeralStorage

* BUG-872590 fixing indentation

* BUG-872590 fixing default value

* BUG-872590 fixing default value

* BUG-872590 fixing default value

---------

Co-authored-by: locoe <Evan.Loconto@pega.com>
  • Loading branch information
Evan1oconto and locoe authored Jul 16, 2024
1 parent dca7a84 commit 6cab5d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
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

0 comments on commit 6cab5d0

Please sign in to comment.