Skip to content

Commit

Permalink
fix: downgrade fluentbit to fix tls.vhost issues (#4871)
Browse files Browse the repository at this point in the history
When testing with TLS, we found the `tls.vhost` configuration for
Fluent Bit HTTP outputs does not work as it did before, causing Fluent
Bit to fail with TLS errors.

(cherry picked from commit 2f0464f)
  • Loading branch information
stoksc authored and mackrorysd committed Aug 25, 2022
1 parent 950f1ce commit 02831bb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions master/pkg/aproto/defaults.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package aproto

const (
// FluentImage is docker image id to use for the managed Fluent Bit daemon.
FluentImage = "fluent/fluent-bit:1.9.3"
// FluentImage is docker image id to use for the managed Fluent Bit daemon. Fluent Bit did a
// rewrite of their TLS stack that introduced a bug (unconfirmed with them) with `tls.vhost`
// in 1.7, so take care before upgrading this past that (1.9.3 did not work).
FluentImage = "fluent/fluent-bit:1.6"
)

0 comments on commit 02831bb

Please sign in to comment.