Skip to content

Commit

Permalink
try without ephemeral storage
Browse files Browse the repository at this point in the history
  • Loading branch information
AnieeG committed Jul 9, 2024
1 parent 4bab3b2 commit 00c6e9b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 17 deletions.
12 changes: 0 additions & 12 deletions integration-tests/ccip-tests/testsetups/ccip.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 1 addition & 5 deletions integration-tests/ccip-tests/testsetups/test_env.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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
Expand Down

0 comments on commit 00c6e9b

Please sign in to comment.