diff --git a/.github/workflows/test_hr_rolling_upgrades.yml b/.github/workflows/test_hr_rolling_upgrades.yml index 36ba5c30b..52d4f99bc 100644 --- a/.github/workflows/test_hr_rolling_upgrades.yml +++ b/.github/workflows/test_hr_rolling_upgrades.yml @@ -26,10 +26,11 @@ jobs: uses: ./.github/actions/kind - name: Run Hot Rod Rolling Upgrade Tests - run: make upgrade-test + run: make hotrod-upgrade-test env: SUBSCRIPTION_STARTING_CSV: infinispan-operator.v2.3.2 TESTING_OPERAND_IGNORE_LIST: ${{ inputs.skipList }} + INFINISPAN_CPU: 500m # prevent insufficient cpu error on test-rolling-upgrade pod start - name: Inspect Cluster if: failure() diff --git a/test/e2e/hotrod-rolling-upgrade/hotrod_rolling_upgrade_test.go b/test/e2e/hotrod-rolling-upgrade/hotrod_rolling_upgrade_test.go index 4477377c8..995415781 100644 --- a/test/e2e/hotrod-rolling-upgrade/hotrod_rolling_upgrade_test.go +++ b/test/e2e/hotrod-rolling-upgrade/hotrod_rolling_upgrade_test.go @@ -71,7 +71,6 @@ func TestRollingUpgrade(t *testing.T) { entriesPerCache := 100 spec := tutils.DefaultSpec(t, testKube, func(i *ispnv1.Infinispan) { i.Spec.Replicas = int32(replicas) - i.Spec.Container.CPU = "1000m" i.Spec.Service.Container.EphemeralStorage = false i.Spec.Upgrades = &ispnv1.InfinispanUpgradesSpec{ Type: ispnv1.UpgradeTypeHotRodRolling,