Skip to content

Commit

Permalink
operator: Add ruler config support (#6195)
Browse files Browse the repository at this point in the history
  • Loading branch information
periklis authored Jun 2, 2022
1 parent f52fc9d commit 4c3e276
Show file tree
Hide file tree
Showing 27 changed files with 3,449 additions and 1 deletion.
1 change: 1 addition & 0 deletions operator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Main

- [6195](https://github.com/grafana/loki/pull/6195) **periklis**: Add ruler config support
- [6198](https://github.com/grafana/loki/pull/6198) **periklis**: Add support for custom S3 CA
- [6199](https://github.com/grafana/loki/pull/6199) **Red-GV**: Update GCP secret volume path
- [6125](https://github.com/grafana/loki/pull/6125) **sasagarw**: Add method to get authenticated from GCP
Expand Down
9 changes: 9 additions & 0 deletions operator/PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,13 @@ resources:
webhooks:
validation: true
webhookVersion: v1
- api:
crdVersion: v1
namespaced: true
controller: true
domain: grafana.com
group: loki
kind: RulerConfig
path: github.com/grafana/loki/operator/api/v1beta1
version: v1beta1
version: "3"
5 changes: 5 additions & 0 deletions operator/api/v1beta1/lokistack_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,11 @@ const (
ReasonMissingObjectStorageCAConfigMap LokiStackConditionReason = "MissingObjectStorageCAConfigMap"
// ReasonInvalidObjectStorageCAConfigMap when the format of the CA configmap is invalid.
ReasonInvalidObjectStorageCAConfigMap LokiStackConditionReason = "InvalidObjectStorageCAConfigMap"
// ReasonMissingRulerSecret when the required secret to authorization remote write connections
// for the ruler is missing.
ReasonMissingRulerSecret LokiStackConditionReason = "MissingRulerSecret"
// ReasonInvalidRulerSecret when the format of the ruler remote write authorization secret is invalid.
ReasonInvalidRulerSecret LokiStackConditionReason = "InvalidRulerSecret"
// ReasonInvalidReplicationConfiguration when the configurated replication factor is not valid
// with the select cluster size.
ReasonInvalidReplicationConfiguration LokiStackConditionReason = "InvalidReplicationConfiguration"
Expand Down
Loading

0 comments on commit 4c3e276

Please sign in to comment.