From fb09e8cf085bc74b7845e9d0e7ba0ea4ddfc9a7f Mon Sep 17 00:00:00 2001 From: Lance Ball Date: Tue, 12 Sep 2023 10:49:55 -0400 Subject: [PATCH] resources: increase the PVC claim limit to 30 During efforts to onboard product components to RHTAP, the PVC resource utilization limit has resulted in regular `PipelineRun` failures. See: https://github.com/codeready-toolchain/host-operator/pull/862 Signed-off-by: Lance Ball --- testsupport/tiers/checks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsupport/tiers/checks.go b/testsupport/tiers/checks.go index fc37d9a33..e1f14fc29 100644 --- a/testsupport/tiers/checks.go +++ b/testsupport/tiers/checks.go @@ -439,7 +439,7 @@ func (a *appstudioTierChecks) GetNamespaceObjectChecks(_ string) []namespaceObje checks := []namespaceObjectsCheck{ resourceQuotaComputeDeploy("20", "32Gi", "1750m", "32Gi"), resourceQuotaComputeBuild("60", "64Gi", "6", "32Gi"), - resourceQuotaStorage("50Gi", "50Gi", "50Gi", "12"), + resourceQuotaStorage("50Gi", "50Gi", "50Gi", "30"), limitRange("2", "2Gi", "10m", "256Mi"), numberOfLimitRanges(1), gitOpsServiceLabel(),