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 memory_requests: 2Gi
cpu_limits: 2 cpu_limits: 2
memory_limits: 4Gi memory_limits: 4Gi
pods: 16
communishift-planet: communishift-planet:
name: communishift-planet name: communishift-planet
# true or false if we are or are not a copr build virthost. # 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') }}" limits.memory: "{{ item.value.memory_limits | default('2Gi') }}"
requests.storage: "{{ item.value.storage_requests | default('5Gi') }}" requests.storage: "{{ item.value.storage_requests | default('5Gi') }}"
persistentvolumeclaims: "1" persistentvolumeclaims: "1"
pods: "2" pods: "{{ item.value.pods | default('4') }}"
replicationcontrollers: 1 replicationcontrollers: 1