communishift: allow overriding of max pods, and increase pods of openscanhub to 16

Signed-off-by: Leo Puvilland <leo@craftcat.dev>
This commit is contained in:
Leo Puvilland 2024-03-07 09:45:44 -08:00 committed by zlopez
parent 69e820eba8
commit 65f06a461c
2 changed files with 2 additions and 1 deletions

View File

@ -54,6 +54,7 @@ communishift_projects:
memory_requests: 2Gi
cpu_limits: 2
memory_limits: 4Gi
pods: 16
communishift-planet:
name: communishift-planet
# true or false if we are or are not a copr build virthost.

View File

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