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

chore(updater): bump pkg/dist/*.yml (2024-09-23) #188

Merged
merged 1 commit into from
Sep 23, 2024
Merged
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
24 changes: 22 additions & 2 deletions pkg/dist/service_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1163,6 +1163,7 @@ grafana:
max_items: 1
alerting_enabled:
title: Enable or disable Grafana legacy alerting functionality. This should not be enabled with unified_alerting_enabled.
description: 'DEPRECATED: setting has no effect with Grafana 11 and onward.'
type: boolean
example: true
alerting_error_or_timeout:
Expand Down Expand Up @@ -2653,7 +2654,9 @@ kafka:
- is_deprecated: true
deprecation_notice: This value is deprecated.
value: "3.1"
- value: "3.4"
- is_deprecated: true
deprecation_notice: This value is deprecated.
value: "3.4"
- value: "3.5"
- value: "3.6"
- value: "3.7"
Expand Down Expand Up @@ -4625,7 +4628,7 @@ opensearch:
example: "1000"
cluster_routing_allocation_node_concurrent_recoveries:
title: Concurrent incoming/outgoing shard recoveries per node
description: How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to 2.
description: How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
type: integer
minimum: 2
maximum: 16
Expand Down Expand Up @@ -6311,6 +6314,9 @@ thanos:
description: Retention time for data in days for each resolution (5m, 1h, raw)
type: integer
minimum: 0
env:
title: Environmental variables
type: object
ip_filter:
title: IP filter
description: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
Expand Down Expand Up @@ -6400,6 +6406,20 @@ thanos:
type: string
default: 2m
max_length: 20
store.limits.request-samples:
title: Store.Limits.Request-Samples
description: 'The maximum samples allowed for a single Series request. The Series call fails if this limit is exceeded. Set to 0 for no limit. NOTE: For efficiency, the limit is internally implemented as ''chunks limit'' considering each chunk contains a maximum of 120 samples. The default value is 100 * store.limits.request-series.'
type: integer
default: "0"
minimum: 0
maximum: 1e+08
store.limits.request-series:
title: Store.Limits.Request-Series
description: The maximum series allowed for a single Series request. The Series call fails if this limit is exceeded. Set to 0 for no limit. The default value is 1000 * cpu_count.
type: integer
default: "0"
minimum: 0
maximum: 1e+08
query-frontend:
title: ThanosQueryFrontendUserConfig
description: Generic model
Expand Down
Loading