We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b00eca commit 4c9faf8Copy full SHA for 4c9faf8
CHANGELOG.md
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
5
## [Unreleased]
6
7
+### Changed
8
+
9
+- Disable Vector agent by default ([#526]).
10
11
+[#526]: https://github.com/stackabletech/operator-rs/pull/526
12
13
## [0.30.1] - 2022-12-19
14
15
### Removed
src/product_logging/spec.rs
@@ -368,7 +368,7 @@ where
368
T: Clone + Display + Ord + strum::IntoEnumIterator,
369
{
370
LoggingFragment {
371
- enable_vector_agent: Some(true),
+ enable_vector_agent: Some(false),
372
containers: T::iter()
373
.map(|container| (container, default_container_log_config()))
374
.collect(),
0 commit comments