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

operator: Fix ruler IPv6 instance setting #11078

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
25 changes: 25 additions & 0 deletions operator/internal/manifests/internal/config/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3682,6 +3682,25 @@ schema_config:
object_store: s3
schema: v11
store: boltdb-shipper
ruler:
enable_api: true
enable_sharding: true
evaluation_interval: 1m
poll_interval: 1m
wal:
dir: /tmp/wal
truncate_frequency: 60m
min_age: 5m
max_age: 4h
rule_path: /tmp/loki
storage:
type: local
local:
directory: /tmp/rules
ring:
kvstore:
store: memberlist
instance_enable_ipv6: true
server:
graceful_shutdown_timeout: 5s
grpc_server_min_time_between_pings: '10s'
Expand Down Expand Up @@ -3766,6 +3785,12 @@ overrides:
FQDN: "loki-index-gateway-grpc-lokistack-dev.default.svc.cluster.local",
Port: 9095,
},
Ruler: Ruler{
Enabled: true,
RulesStorageDirectory: "/tmp/rules",
EvaluationInterval: "1m",
PollInterval: "1m",
},
StorageDirectory: "/tmp/loki",
MaxConcurrent: MaxConcurrent{
AvailableQuerierCPUCores: 2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,9 @@ ruler:
ring:
kvstore:
store: memberlist
{{- if .GossipRing.EnableIPv6 }}
instance_enable_ipv6: true
{{- end}}
{{- if .Gates.GRPCEncryption }}
ruler_client:
tls_enabled: true
Expand Down