Skip to content

Commit

Permalink
anvil resource
Browse files Browse the repository at this point in the history
  • Loading branch information
AnieeG committed Jul 8, 2024
1 parent 947a9c9 commit cb4de9f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions integration-tests/ccip-tests/testsetups/ccip.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,18 @@ 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
2 changes: 1 addition & 1 deletion integration-tests/ccip-tests/testsetups/test_env.go
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ func DeployEnvironments(
"blockGasLimit": fmt.Sprintf("%d", pointer.GetInt64(anvilConfig.BlockGaslimit)),
"baseFee": fmt.Sprintf("%d", pointer.GetInt64(anvilConfig.BaseFee)),
},
"resources": testInputs.GethResourceProfile,
"resources": AnvilResourceProfile,
},
}))
selectedNetworks[i].Simulated = true
Expand Down

0 comments on commit cb4de9f

Please sign in to comment.