Skip to content

Commit

Permalink
Lower disk space eviction limits for network conformance inttest
Browse files Browse the repository at this point in the history
Recently, the network conformance inttest has been failing regularly.
This is because the sonobuoy pods are being evicted when the available
disk space on the GitHub runners falls below the default eviction
limits. Mitigate this by lowering the eviction limits.

This is duct-tape solution. It's unclear whether the reduced amount of
free disk space on the GitHub runners is due to changes made by GitHub
or to changes in k0s.

Signed-off-by: Tom Wieczorek <[email protected]>
  • Loading branch information
twz123 committed Sep 11, 2023
1 parent fcb969c commit 6e16eb8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions inttest/network-conformance/network_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,11 @@ const k0sConfig = `
spec:
network:
provider: %s
workerProfiles:
- name: default
values:
# GitHub runners may get low on disk space
evictionHard:
nodefs.available: 200Mi
imagefs.available: 200Mi
`

0 comments on commit 6e16eb8

Please sign in to comment.