From 2a76f5b29ae0dd628d69da62356e4d742df61e31 Mon Sep 17 00:00:00 2001 From: Konstantinos Samaras-Tsakiris <ksamtsak@gmail.com> Date: Tue, 23 Nov 2021 12:36:19 +0100 Subject: [PATCH] Increase build resources further --- controllers/drupalsite_controller_test.go | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/controllers/drupalsite_controller_test.go b/controllers/drupalsite_controller_test.go index 3a5b708c..08c71f3f 100644 --- a/controllers/drupalsite_controller_test.go +++ b/controllers/drupalsite_controller_test.go @@ -960,7 +960,7 @@ var _ = Describe("DrupalSite controller", func() { // }, timeout, interval).Should(ContainElement(expectedOwnerReference)) // // Check gitlab webhook URL updated on the drupalSite status - // By("Expecting Gitlab webhook secret created") + // By("Expecting Gitlab webhook secret listed in the DrupalSite status") // Eventually(func() bool { // cfg, err := ctrl.GetConfig() // if err != nil { diff --git a/main.go b/main.go index 52563834..70d5f4e1 100644 --- a/main.go +++ b/main.go @@ -87,7 +87,7 @@ func main() { ctrl.SetLogger(zap.New(zap.UseFlagOptions(&opts))) var err error - controllers.BuildResources, err = controllers.ResourceRequestLimit("2Gi", "250m", "4Gi", "1000m") + controllers.BuildResources, err = controllers.ResourceRequestLimit("2Gi", "1000m", "4Gi", "2000m") if err != nil { setupLog.Error(err, "Invalid configuration: can't parse build resources") os.Exit(1) -- GitLab