diff --git a/integration-tests/ccip-tests/testsetups/ccip.go b/integration-tests/ccip-tests/testsetups/ccip.go index 520ce4cebb..27980517d8 100644 --- a/integration-tests/ccip-tests/testsetups/ccip.go +++ b/integration-tests/ccip-tests/testsetups/ccip.go @@ -58,18 +58,6 @@ var ( "memory": "6Gi", }, } - AnvilResourceProfile = map[string]interface{}{ - "requests": map[string]interface{}{ - "cpu": "4", - "memory": "6Gi", - "ephemeral-storage": "25Gi", - }, - "limits": map[string]interface{}{ - "cpu": "4", - "memory": "6Gi", - "ephemeral-storage": "25Gi", - }, - } // to set default values through test config use sync.once setContractVersion sync.Once setOCRParams sync.Once diff --git a/integration-tests/ccip-tests/testsetups/test_env.go b/integration-tests/ccip-tests/testsetups/test_env.go index 321181745e..3555e87208 100644 --- a/integration-tests/ccip-tests/testsetups/test_env.go +++ b/integration-tests/ccip-tests/testsetups/test_env.go @@ -487,10 +487,6 @@ func DeployEnvironments( NetworkName: network.Name, Values: map[string]interface{}{ "fullnameOverride": actions.NetworkName(network.Name), - "image": map[string]interface{}{ - "repository": "ghcr.io/foundry-rs/foundry", - "tag": "nightly-ea2eff95b5c17edd3ffbdfc6daab5ce5cc80afc0", - }, "anvil": map[string]interface{}{ "chainId": fmt.Sprintf("%d", network.ChainID), "blockTime": anvilConfig.BlockTime, @@ -504,7 +500,7 @@ func DeployEnvironments( "blockGasLimit": fmt.Sprintf("%d", pointer.GetInt64(anvilConfig.BlockGaslimit)), "baseFee": fmt.Sprintf("%d", pointer.GetInt64(anvilConfig.BaseFee)), }, - "resources": AnvilResourceProfile, + "resources": GethResourceProfile, }, })) selectedNetworks[i].Simulated = true