├── .dockerignore ├── .gitignore ├── .goreleaser.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── PROJECT ├── Readme.md ├── api └── v1beta1 │ ├── expr_validator.go │ ├── globallokirule_types.go │ ├── groupversion_info.go │ ├── lokirule_types.go │ ├── lokirule_webhook.go │ ├── webhook_suite_test.go │ └── zz_generated.deepcopy.go ├── chart ├── Chart.yaml ├── crds │ ├── logging.opsgy.com_globallokirules.yaml │ └── logging.opsgy.com_lokirules.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── certificate.yaml │ ├── cluster-role-binding.yaml │ ├── cluster-role.yaml │ ├── deployment.yaml │ ├── role-binding.yaml │ ├── role.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── webhook.yaml └── values.yaml ├── config ├── certmanager │ ├── certificate.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── crd │ ├── bases │ │ ├── logging.opsgy.com_globallokirules.yaml │ │ └── logging.opsgy.com_lokirules.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_globallokirules.yaml │ │ ├── cainjection_in_lokirules.yaml │ │ ├── webhook_in_globallokirules.yaml │ │ └── webhook_in_lokirules.yaml ├── default │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ ├── manager_config_patch.yaml │ ├── manager_webhook_patch.yaml │ └── webhookcainjection_patch.yaml ├── manager │ ├── controller_manager_config.yaml │ ├── kustomization.yaml │ └── manager.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── auth_proxy_client_clusterrole.yaml │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── auth_proxy_service.yaml │ ├── globallokirule_editor_role.yaml │ ├── globallokirule_viewer_role.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── lokirule_editor_role.yaml │ ├── lokirule_viewer_role.yaml │ ├── role.yaml │ └── role_binding.yaml ├── samples │ ├── kustomization.yaml │ ├── logging_v1beta1_globallokirule.yaml │ └── logging_v1beta1_lokirule.yaml ├── scorecard │ ├── bases │ │ └── config.yaml │ ├── kustomization.yaml │ └── patches │ │ ├── basic.config.yaml │ │ └── olm.config.yaml └── webhook │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── service.yaml ├── controllers ├── globallokirule_controller.go ├── label.go ├── lokirule_controller.go └── suite_test.go ├── deploy ├── Readme.md ├── certificate.yaml ├── cluster-role-binding.yaml ├── cluster-role.yaml ├── crd │ ├── logging.opsgy.com_globallokirules.yaml │ └── logging.opsgy.com_lokirules.yaml ├── deployment.yaml ├── role-binding.yaml ├── role.yaml ├── service.yaml ├── serviceaccount.yaml └── webhook.yaml ├── go.mod ├── go.sum ├── hack └── boilerplate.go.txt └── main.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/Readme.md -------------------------------------------------------------------------------- /api/v1beta1/expr_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/api/v1beta1/expr_validator.go -------------------------------------------------------------------------------- /api/v1beta1/globallokirule_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/api/v1beta1/globallokirule_types.go -------------------------------------------------------------------------------- /api/v1beta1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/api/v1beta1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1beta1/lokirule_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/api/v1beta1/lokirule_types.go -------------------------------------------------------------------------------- /api/v1beta1/lokirule_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/api/v1beta1/lokirule_webhook.go -------------------------------------------------------------------------------- /api/v1beta1/webhook_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/api/v1beta1/webhook_suite_test.go -------------------------------------------------------------------------------- /api/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/api/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/Chart.yaml -------------------------------------------------------------------------------- /chart/crds/logging.opsgy.com_globallokirules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/crds/logging.opsgy.com_globallokirules.yaml -------------------------------------------------------------------------------- /chart/crds/logging.opsgy.com_lokirules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/crds/logging.opsgy.com_lokirules.yaml -------------------------------------------------------------------------------- /chart/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /chart/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/templates/certificate.yaml -------------------------------------------------------------------------------- /chart/templates/cluster-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/templates/cluster-role-binding.yaml -------------------------------------------------------------------------------- /chart/templates/cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/templates/cluster-role.yaml -------------------------------------------------------------------------------- /chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /chart/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/templates/role-binding.yaml -------------------------------------------------------------------------------- /chart/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/templates/role.yaml -------------------------------------------------------------------------------- /chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/templates/service.yaml -------------------------------------------------------------------------------- /chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chart/templates/webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/templates/webhook.yaml -------------------------------------------------------------------------------- /chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/chart/values.yaml -------------------------------------------------------------------------------- /config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.opsgy.com_globallokirules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/crd/bases/logging.opsgy.com_globallokirules.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.opsgy.com_lokirules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/crd/bases/logging.opsgy.com_lokirules.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_globallokirules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/crd/patches/cainjection_in_globallokirules.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_lokirules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/crd/patches/cainjection_in_lokirules.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_globallokirules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/crd/patches/webhook_in_globallokirules.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_lokirules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/crd/patches/webhook_in_lokirules.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_config_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/default/manager_config_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /config/manager/controller_manager_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/manager/controller_manager_config.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/globallokirule_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/globallokirule_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/globallokirule_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/globallokirule_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/lokirule_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/lokirule_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/lokirule_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/lokirule_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/logging_v1beta1_globallokirule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/samples/logging_v1beta1_globallokirule.yaml -------------------------------------------------------------------------------- /config/samples/logging_v1beta1_lokirule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/samples/logging_v1beta1_lokirule.yaml -------------------------------------------------------------------------------- /config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/config/webhook/service.yaml -------------------------------------------------------------------------------- /controllers/globallokirule_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/controllers/globallokirule_controller.go -------------------------------------------------------------------------------- /controllers/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/controllers/label.go -------------------------------------------------------------------------------- /controllers/lokirule_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/controllers/lokirule_controller.go -------------------------------------------------------------------------------- /controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/controllers/suite_test.go -------------------------------------------------------------------------------- /deploy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/deploy/Readme.md -------------------------------------------------------------------------------- /deploy/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/deploy/certificate.yaml -------------------------------------------------------------------------------- /deploy/cluster-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/deploy/cluster-role-binding.yaml -------------------------------------------------------------------------------- /deploy/cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/deploy/cluster-role.yaml -------------------------------------------------------------------------------- /deploy/crd/logging.opsgy.com_globallokirules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/deploy/crd/logging.opsgy.com_globallokirules.yaml -------------------------------------------------------------------------------- /deploy/crd/logging.opsgy.com_lokirules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/deploy/crd/logging.opsgy.com_lokirules.yaml -------------------------------------------------------------------------------- /deploy/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/deploy/deployment.yaml -------------------------------------------------------------------------------- /deploy/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/deploy/role-binding.yaml -------------------------------------------------------------------------------- /deploy/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/deploy/role.yaml -------------------------------------------------------------------------------- /deploy/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/deploy/service.yaml -------------------------------------------------------------------------------- /deploy/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/deploy/serviceaccount.yaml -------------------------------------------------------------------------------- /deploy/webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/deploy/webhook.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgy/loki-rule-operator/HEAD/main.go --------------------------------------------------------------------------------