Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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