Skip to content

Commit

Permalink
MGMT-19248: Adjust OpenShift AI resources
Browse files Browse the repository at this point in the history
This patch adjust the resources needed to run the _OpenShift AI_
operator. The previous values were too high, in particular the default
resources for master nodes are enough, so there is no need to change
them.

Related: https://issues.redhat.com/browse/MGMT-19248
Related: https://issues.redhat.com/browse/MGMT-19056
Signed-off-by: Juan Hernandez <[email protected]>
  • Loading branch information
jhernand committed Nov 28, 2024
1 parent 798a2ea commit dd854ce
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/consts/olm_operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,11 @@ def values(cls, is_sno: bool = False) -> dict:
OperatorType.METALLB: cls.get_resource_dict(),
OperatorType.OPENSHIFT_AI: cls.get_resource_dict(
# Note that these requirements are for OpenShift and all its dependencies, in particular ODF.
master_memory=40 * 1024,
worker_memory=64 * 1024,
master_vcpu=12,
worker_vcpu=20,
master_disk=100 * GB,
worker_count=3,
worker_disk=100 * GB,
master_disk_count=1,
worker_disk_count=2,
worker_count=3,
worker_memory=60 * 1024,
worker_vcpu=20,
),
}

Expand Down

0 comments on commit dd854ce

Please sign in to comment.