Skip to content

Commit

Permalink
Prevents pod eviction in OCR Soak (#10909)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalverra authored Oct 11, 2023
1 parent d7aaa0d commit 2cc99be
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions integration-tests/testsetups/ocr.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,10 @@ func (o *OCRSoakTest) DeployEnvironment(customChainlinkNetworkTOML string) {
}
nsPre = fmt.Sprintf("%s%s", nsPre, strings.ReplaceAll(strings.ToLower(network.Name), " ", "-"))
baseEnvironmentConfig := &environment.Config{
TTL: time.Hour * 720, // 30 days,
NamespacePrefix: nsPre,
Test: o.t,
TTL: time.Hour * 720, // 30 days,
NamespacePrefix: nsPre,
Test: o.t,
PreventPodEviction: true,
}

cd := chainlink.New(0, map[string]any{
Expand Down

0 comments on commit 2cc99be

Please sign in to comment.