Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-5.6] fix(operator): Disable structured metadata #319

Merged
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
1 change: 1 addition & 0 deletions operator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Release 5.6.21

- [319](https://github.com/openshift/loki/pull/319) **periklis**: fix(operator): Disable structured metadata
- [13422](https://github.com/grafana/loki/pull/13422) **periklis** feat(operator): Update Loki operand to v3.1.0
- [13369](https://github.com/grafana/loki/pull/13369) **jatinsu**: feat(operator): Add support for the volume API

Expand Down
10 changes: 10 additions & 0 deletions operator/internal/manifests/internal/config/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ limits_config:
per_stream_rate_limit: 3MB
per_stream_rate_limit_burst: 15MB
split_queries_by_interval: 30m
allow_structured_metadata: false
query_timeout: 1m
volume_enabled: true
volume_max_series: 1000
Expand Down Expand Up @@ -354,6 +355,7 @@ limits_config:
per_stream_rate_limit: 3MB
per_stream_rate_limit_burst: 15MB
split_queries_by_interval: 30m
allow_structured_metadata: false
query_timeout: 1m
volume_enabled: true
volume_max_series: 1000
Expand Down Expand Up @@ -695,6 +697,7 @@ limits_config:
per_stream_rate_limit: 3MB
per_stream_rate_limit_burst: 15MB
split_queries_by_interval: 30m
allow_structured_metadata: false
query_timeout: 1m
volume_enabled: true
volume_max_series: 1000
Expand Down Expand Up @@ -1045,6 +1048,7 @@ limits_config:
per_stream_rate_limit: 3MB
per_stream_rate_limit_burst: 15MB
split_queries_by_interval: 30m
allow_structured_metadata: false
query_timeout: 1m
volume_enabled: true
volume_max_series: 1000
Expand Down Expand Up @@ -1396,6 +1400,7 @@ limits_config:
per_stream_rate_limit: 3MB
per_stream_rate_limit_burst: 15MB
split_queries_by_interval: 30m
allow_structured_metadata: false
query_timeout: 1m
volume_enabled: true
volume_max_series: 1000
Expand Down Expand Up @@ -1785,6 +1790,7 @@ limits_config:
per_stream_rate_limit: 3MB
per_stream_rate_limit_burst: 15MB
split_queries_by_interval: 30m
allow_structured_metadata: false
query_timeout: 1m
volume_enabled: true
volume_max_series: 1000
Expand Down Expand Up @@ -2079,6 +2085,7 @@ limits_config:
per_stream_rate_limit: 3MB
per_stream_rate_limit_burst: 15MB
split_queries_by_interval: 30m
allow_structured_metadata: false
query_timeout: 2m
volume_enabled: true
volume_max_series: 1000
Expand Down Expand Up @@ -2511,6 +2518,7 @@ limits_config:
per_stream_rate_limit: 3MB
per_stream_rate_limit_burst: 15MB
split_queries_by_interval: 30m
allow_structured_metadata: false
query_timeout: 1m
volume_enabled: true
volume_max_series: 1000
Expand Down Expand Up @@ -2829,6 +2837,7 @@ limits_config:
per_stream_rate_limit: 3MB
per_stream_rate_limit_burst: 15MB
split_queries_by_interval: 30m
allow_structured_metadata: false
query_timeout: 1m
volume_enabled: true
volume_max_series: 1000
Expand Down Expand Up @@ -3082,6 +3091,7 @@ limits_config:
per_stream_rate_limit: 3MB
per_stream_rate_limit_burst: 15MB
split_queries_by_interval: 30m
allow_structured_metadata: false
query_timeout: 1m
volume_enabled: true
volume_max_series: 1000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ limits_config:
per_stream_rate_limit: {{ .Stack.Limits.Global.IngestionLimits.PerStreamRateLimit }}MB
per_stream_rate_limit_burst: {{ .Stack.Limits.Global.IngestionLimits.PerStreamRateLimitBurst }}MB
split_queries_by_interval: 30m
allow_structured_metadata: false
{{- with .GossipRing }}
memberlist:
abort_if_cluster_join_fails: true
Expand Down