Skip to content

Commit

Permalink
resources
Browse files Browse the repository at this point in the history
  • Loading branch information
skudasov committed Apr 28, 2022
1 parent 50c3af3 commit bf5eedd
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions tests/e2e/solclient/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,6 @@ func NewChainlinkSolOCRv2(nodes int, stateful bool) *environment.Config {
"version": "develop",
},
},
"db": map[string]interface{}{
"resources": map[string]interface{}{
"requests": map[string]interface{}{
"cpu": "4000m",
"memory": "4000Mi",
},
"limits": map[string]interface{}{
"cpu": "4000m",
"memory": "4000Mi",
},
},
},
"env": map[string]interface{}{
"SOLANA_ENABLED": "true",
"EVM_ENABLED": "false",
Expand All @@ -60,6 +48,16 @@ func NewChainlinkSolOCRv2(nodes int, stateful bool) *environment.Config {
env.Charts["chainlink"].Values["db"] = map[string]interface{}{
"stateful": true,
"capacity": "5Gi",
"resources": map[string]interface{}{
"requests": map[string]interface{}{
"cpu": "4000m",
"memory": "4000Mi",
},
"limits": map[string]interface{}{
"cpu": "4000m",
"memory": "4000Mi",
},
},
}
}
return env
Expand Down

0 comments on commit bf5eedd

Please sign in to comment.