Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3866 from openservicemesh/mergify/bp/release-v0.9…
Browse files Browse the repository at this point in the history
…/pr-3518

test(e2e): Skip FluentBit tests on OpenShift (backport #3518)
  • Loading branch information
nshankar13 authored Jul 27, 2021
2 parents c9b80d1 + 6ae6401 commit e53260c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/e2e/e2e_fluentbit_deployment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ var _ = OSMDescribe("Test deployment of Fluent Bit sidecar",
func() {
Context("Fluent Bit deployment", func() {
It("Deploys a Fluent Bit sidecar only when enabled", func() {
if Td.DeployOnOpenShift {
Skip("Skipping test: FluentBit not supported on OpenShift")
}
// Install OSM with Fluentbit
installOpts := Td.GetOSMInstallOpts()
installOpts.DeployFluentbit = true
Expand Down
3 changes: 3 additions & 0 deletions tests/e2e/e2e_fluentbit_output_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ var _ = OSMDescribe("Test deployment of Fluent Bit sidecar",
func() {
Context("Fluent Bit output", func() {
It("Forwards correctly filtered logs to stdout", func() {
if Td.DeployOnOpenShift {
Skip("Skipping test: FluentBit not supported on OpenShift")
}
// Install OSM with Fluentbit
installOpts := Td.GetOSMInstallOpts()
installOpts.DeployFluentbit = true
Expand Down

0 comments on commit e53260c

Please sign in to comment.