Skip to content

Commit

Permalink
Skip Beats stack monitoring e2e test when version >= 8.16 (#8251)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Montgomery <mmontg1@gmail.com>
  • Loading branch information
naemono authored Nov 22, 2024
1 parent a79db96 commit 54ec0e3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/e2e/beat/recipes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ func TestMetricbeatHostsRecipe(t *testing.T) {
}

func TestMetricbeatStackMonitoringRecipe(t *testing.T) {
v := version.MustParse(test.Ctx().ElasticStackVersion)

// https://github.com/elastic/cloud-on-k8s/issues/8250
// Update when the referenced issue is resolved.
if v.GE(version.MinFor(8, 16, 0)) {
t.SkipNow()
}

name := "fb-autodiscover"
pod, loggedString := loggingTestPod(name)
customize := func(builder beat.Builder) beat.Builder {
Expand Down

0 comments on commit 54ec0e3

Please sign in to comment.