1
0
Fork 0
forked from infra/ansible

communishift: add pvc handling and allow 3 for happinesspackets

Per infra/tickets#13437

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2026-07-01 14:40:17 -07:00
commit b74bb8e1a3
2 changed files with 2 additions and 0 deletions

View file

@ -78,6 +78,7 @@ communishift_projects:
name: communishift-copr
communishift-happinesspackets:
name: communishift-happinesspackets
pvcs: 3
# true or false if we are or are not a copr build virthost.
# Default to false
copr_build_virthost: false

View file

@ -18,5 +18,6 @@
limits.memory: "{{ item.value.memory_limits | default('2Gi') }}"
requests.storage: "{{ item.value.storage_requests | default('5Gi') }}"
persistentvolumeclaims: "1"
persistentvolumeclaims: "{{ item.value.pvcs | default('1') }}"
pods: "{{ item.value.pods | default('4') }}"
replicationcontrollers: 1