├── .github └── workflows │ ├── go.yml │ └── pr-check.yaml ├── .gitignore ├── CONTRIBUTING.md ├── DCO ├── Dockerfile ├── Makefile ├── PROJECT ├── README.md ├── api └── v1 │ ├── alertmanager_config.go │ ├── groupversion_info.go │ ├── index.go │ ├── index_test.go │ ├── observability_types.go │ ├── observability_types_test.go │ ├── observability_webhook.go │ ├── observability_webhook_test.go │ └── zz_generated.deepcopy.go ├── bundle.Dockerfile ├── bundle ├── manifests │ ├── observability-operator-federation-reader_rbac.authorization.k8s.io_v1_rolebinding.yaml │ ├── observability-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml │ ├── observability-operator-priority-class_scheduling.k8s.io_v1_priorityclass.yaml │ ├── observability-operator-webhook-service_v1_service.yaml │ ├── observability-operator.clusterserviceversion.yaml │ └── observability.redhat.com_observabilities.yaml ├── metadata │ └── annotations.yaml └── tests │ └── scorecard │ └── config.yaml ├── codecov.yaml ├── config ├── certmanager │ ├── certificate.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── crd │ ├── bases │ │ └── observability.redhat.com_observabilities.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_observabilities.yaml │ │ └── webhook_in_observabilities.yaml ├── default │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ ├── manager_webhook_patch.yaml │ └── webhookcainjection_patch.yaml ├── extensions │ ├── kustomization.yaml │ └── priorityclass.yaml ├── manager │ ├── kustomization.yaml │ └── manager.yaml ├── manifests │ ├── bases │ │ └── observability-operator.clusterserviceversion.yaml │ └── kustomization.yaml ├── observability │ ├── kafka-pod-monitor.yaml │ ├── strimzi-pod-monitor.yaml │ └── uwm-config-map.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── auth_proxy_client_clusterrole.yaml │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── observability_editor_role.yaml │ ├── observability_viewer_role.yaml │ ├── role.yaml │ └── role_binding.yaml ├── samples │ ├── deployment │ │ └── operator.yaml │ ├── kustomization.yaml │ ├── observability_v1_observability.yaml │ ├── prioclass.yaml │ └── secrets │ │ ├── deadmanssnitch.yaml │ │ ├── observability_secret.yaml │ │ ├── observatorium-configuration-red-hat-sso.yaml │ │ ├── observatorium-dex-credentials.yaml │ │ ├── pagerduty.yaml │ │ └── sendgrid.yaml ├── scorecard │ ├── bases │ │ └── config.yaml │ ├── kustomization.yaml │ └── patches │ │ ├── basic.config.yaml │ │ └── olm.config.yaml └── webhook │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ ├── manifests.yaml │ └── service.yaml ├── controllers ├── metrics │ └── metrics.go ├── model │ ├── alertmanager_resources.go │ ├── alertmanager_resources_test.go │ ├── configuration_resources.go │ ├── configuration_resources_test.go │ ├── grafana_resources.go │ ├── grafana_resources_test.go │ ├── logging_resources.go │ ├── logging_resources_test.go │ ├── priorityclass_resources.go │ ├── prometheus_resources.go │ ├── prometheus_resources_test.go │ ├── promtail_resource_test.go │ ├── promtail_resources.go │ ├── token_refresher_resources.go │ ├── token_refresher_resources_test.go │ ├── token_resources.go │ └── token_resources_test.go ├── observability_controller.go ├── reconcilers │ ├── alertmanager_installation │ │ └── alertmanager_installation_reconciler.go │ ├── configuration │ │ ├── alertmanager.go │ │ ├── configuration_reconciler.go │ │ ├── configuration_reconciler_test.go │ │ ├── grafana.go │ │ ├── grafana_dashboards.go │ │ ├── grafana_dashboards_test.go │ │ ├── observability_resources.go │ │ ├── observability_resources_test.go │ │ ├── origin_proxy.go │ │ ├── origin_proxy_test.go │ │ ├── pod_monitors.go │ │ ├── pod_monitors_test.go │ │ ├── prometheus.go │ │ ├── prometheus_rules.go │ │ ├── prometheus_rules_test.go │ │ ├── promtail.go │ │ ├── token_refresher.go │ │ └── token_refresher_test.go │ ├── csv │ │ └── csv_reconciler.go │ ├── grafana_configuration │ │ └── grafana_configuration_reconciler.go │ ├── grafana_installation │ │ └── grafana_installation_reconciler.go │ ├── logging_installation │ │ ├── logging_installation_reconciler.go │ │ └── logging_installation_reconciler_test.go │ ├── migration │ │ └── resource_name_migration.go │ ├── prometheus_configuration │ │ └── prometheus_configuration_reconciler.go │ ├── prometheus_installation │ │ ├── prometheus_installation_reconciler.go │ │ └── prometheus_installation_reconciler_test.go │ ├── promtail_installation │ │ └── promtail_installation_reconciler.go │ ├── reconciler.go │ └── token │ │ ├── token_manager.go │ │ ├── token_manager_test.go │ │ └── token_reconciler.go ├── suite_test.go ├── token │ └── token_fetcher.go └── utils │ ├── reconciler_utils.go │ └── reconciler_utils_test.go ├── go.mod ├── go.sum ├── hack └── boilerplate.go.txt ├── index.Dockerfile ├── main.go ├── pr_check.sh ├── readme-ide-run.png ├── runners └── generic_runner.go └── templates ├── crc-secret-template.yml └── secrets-template.yml /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/.github/workflows/pr-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/DCO -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/README.md -------------------------------------------------------------------------------- /api/v1/alertmanager_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/api/v1/alertmanager_config.go -------------------------------------------------------------------------------- /api/v1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/api/v1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/api/v1/index.go -------------------------------------------------------------------------------- /api/v1/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/api/v1/index_test.go -------------------------------------------------------------------------------- /api/v1/observability_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/api/v1/observability_types.go -------------------------------------------------------------------------------- /api/v1/observability_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/api/v1/observability_types_test.go -------------------------------------------------------------------------------- /api/v1/observability_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/api/v1/observability_webhook.go -------------------------------------------------------------------------------- /api/v1/observability_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/api/v1/observability_webhook_test.go -------------------------------------------------------------------------------- /api/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/api/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /bundle.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/bundle.Dockerfile -------------------------------------------------------------------------------- /bundle/manifests/observability-operator-federation-reader_rbac.authorization.k8s.io_v1_rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/bundle/manifests/observability-operator-federation-reader_rbac.authorization.k8s.io_v1_rolebinding.yaml -------------------------------------------------------------------------------- /bundle/manifests/observability-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/bundle/manifests/observability-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml -------------------------------------------------------------------------------- /bundle/manifests/observability-operator-priority-class_scheduling.k8s.io_v1_priorityclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/bundle/manifests/observability-operator-priority-class_scheduling.k8s.io_v1_priorityclass.yaml -------------------------------------------------------------------------------- /bundle/manifests/observability-operator-webhook-service_v1_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/bundle/manifests/observability-operator-webhook-service_v1_service.yaml -------------------------------------------------------------------------------- /bundle/manifests/observability-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/bundle/manifests/observability-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /bundle/manifests/observability.redhat.com_observabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/bundle/manifests/observability.redhat.com_observabilities.yaml -------------------------------------------------------------------------------- /bundle/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/bundle/metadata/annotations.yaml -------------------------------------------------------------------------------- /bundle/tests/scorecard/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/bundle/tests/scorecard/config.yaml -------------------------------------------------------------------------------- /codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/codecov.yaml -------------------------------------------------------------------------------- /config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/bases/observability.redhat.com_observabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/crd/bases/observability.redhat.com_observabilities.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_observabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/crd/patches/cainjection_in_observabilities.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_observabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/crd/patches/webhook_in_observabilities.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /config/extensions/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - priorityclass.yaml -------------------------------------------------------------------------------- /config/extensions/priorityclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/extensions/priorityclass.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/manifests/bases/observability-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/manifests/bases/observability-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /config/observability/kafka-pod-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/observability/kafka-pod-monitor.yaml -------------------------------------------------------------------------------- /config/observability/strimzi-pod-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/observability/strimzi-pod-monitor.yaml -------------------------------------------------------------------------------- /config/observability/uwm-config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/observability/uwm-config-map.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/observability_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/rbac/observability_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/observability_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/rbac/observability_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/samples/deployment/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/samples/deployment/operator.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/observability_v1_observability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/samples/observability_v1_observability.yaml -------------------------------------------------------------------------------- /config/samples/prioclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/samples/prioclass.yaml -------------------------------------------------------------------------------- /config/samples/secrets/deadmanssnitch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/samples/secrets/deadmanssnitch.yaml -------------------------------------------------------------------------------- /config/samples/secrets/observability_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/samples/secrets/observability_secret.yaml -------------------------------------------------------------------------------- /config/samples/secrets/observatorium-configuration-red-hat-sso.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/samples/secrets/observatorium-configuration-red-hat-sso.yaml -------------------------------------------------------------------------------- /config/samples/secrets/observatorium-dex-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/samples/secrets/observatorium-dex-credentials.yaml -------------------------------------------------------------------------------- /config/samples/secrets/pagerduty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/samples/secrets/pagerduty.yaml -------------------------------------------------------------------------------- /config/samples/secrets/sendgrid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/samples/secrets/sendgrid.yaml -------------------------------------------------------------------------------- /config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/webhook/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/webhook/manifests.yaml -------------------------------------------------------------------------------- /config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/config/webhook/service.yaml -------------------------------------------------------------------------------- /controllers/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/metrics/metrics.go -------------------------------------------------------------------------------- /controllers/model/alertmanager_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/alertmanager_resources.go -------------------------------------------------------------------------------- /controllers/model/alertmanager_resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/alertmanager_resources_test.go -------------------------------------------------------------------------------- /controllers/model/configuration_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/configuration_resources.go -------------------------------------------------------------------------------- /controllers/model/configuration_resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/configuration_resources_test.go -------------------------------------------------------------------------------- /controllers/model/grafana_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/grafana_resources.go -------------------------------------------------------------------------------- /controllers/model/grafana_resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/grafana_resources_test.go -------------------------------------------------------------------------------- /controllers/model/logging_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/logging_resources.go -------------------------------------------------------------------------------- /controllers/model/logging_resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/logging_resources_test.go -------------------------------------------------------------------------------- /controllers/model/priorityclass_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/priorityclass_resources.go -------------------------------------------------------------------------------- /controllers/model/prometheus_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/prometheus_resources.go -------------------------------------------------------------------------------- /controllers/model/prometheus_resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/prometheus_resources_test.go -------------------------------------------------------------------------------- /controllers/model/promtail_resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/promtail_resource_test.go -------------------------------------------------------------------------------- /controllers/model/promtail_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/promtail_resources.go -------------------------------------------------------------------------------- /controllers/model/token_refresher_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/token_refresher_resources.go -------------------------------------------------------------------------------- /controllers/model/token_refresher_resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/token_refresher_resources_test.go -------------------------------------------------------------------------------- /controllers/model/token_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/token_resources.go -------------------------------------------------------------------------------- /controllers/model/token_resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/model/token_resources_test.go -------------------------------------------------------------------------------- /controllers/observability_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/observability_controller.go -------------------------------------------------------------------------------- /controllers/reconcilers/alertmanager_installation/alertmanager_installation_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/alertmanager_installation/alertmanager_installation_reconciler.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/alertmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/alertmanager.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/configuration_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/configuration_reconciler.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/configuration_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/configuration_reconciler_test.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/grafana.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/grafana_dashboards.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/grafana_dashboards.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/grafana_dashboards_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/grafana_dashboards_test.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/observability_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/observability_resources.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/observability_resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/observability_resources_test.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/origin_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/origin_proxy.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/origin_proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/origin_proxy_test.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/pod_monitors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/pod_monitors.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/pod_monitors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/pod_monitors_test.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/prometheus.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/prometheus_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/prometheus_rules.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/prometheus_rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/prometheus_rules_test.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/promtail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/promtail.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/token_refresher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/token_refresher.go -------------------------------------------------------------------------------- /controllers/reconcilers/configuration/token_refresher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/configuration/token_refresher_test.go -------------------------------------------------------------------------------- /controllers/reconcilers/csv/csv_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/csv/csv_reconciler.go -------------------------------------------------------------------------------- /controllers/reconcilers/grafana_configuration/grafana_configuration_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/grafana_configuration/grafana_configuration_reconciler.go -------------------------------------------------------------------------------- /controllers/reconcilers/grafana_installation/grafana_installation_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/grafana_installation/grafana_installation_reconciler.go -------------------------------------------------------------------------------- /controllers/reconcilers/logging_installation/logging_installation_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/logging_installation/logging_installation_reconciler.go -------------------------------------------------------------------------------- /controllers/reconcilers/logging_installation/logging_installation_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/logging_installation/logging_installation_reconciler_test.go -------------------------------------------------------------------------------- /controllers/reconcilers/migration/resource_name_migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/migration/resource_name_migration.go -------------------------------------------------------------------------------- /controllers/reconcilers/prometheus_configuration/prometheus_configuration_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/prometheus_configuration/prometheus_configuration_reconciler.go -------------------------------------------------------------------------------- /controllers/reconcilers/prometheus_installation/prometheus_installation_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/prometheus_installation/prometheus_installation_reconciler.go -------------------------------------------------------------------------------- /controllers/reconcilers/prometheus_installation/prometheus_installation_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/prometheus_installation/prometheus_installation_reconciler_test.go -------------------------------------------------------------------------------- /controllers/reconcilers/promtail_installation/promtail_installation_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/promtail_installation/promtail_installation_reconciler.go -------------------------------------------------------------------------------- /controllers/reconcilers/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/reconciler.go -------------------------------------------------------------------------------- /controllers/reconcilers/token/token_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/token/token_manager.go -------------------------------------------------------------------------------- /controllers/reconcilers/token/token_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/token/token_manager_test.go -------------------------------------------------------------------------------- /controllers/reconcilers/token/token_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/reconcilers/token/token_reconciler.go -------------------------------------------------------------------------------- /controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/suite_test.go -------------------------------------------------------------------------------- /controllers/token/token_fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/token/token_fetcher.go -------------------------------------------------------------------------------- /controllers/utils/reconciler_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/utils/reconciler_utils.go -------------------------------------------------------------------------------- /controllers/utils/reconciler_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/controllers/utils/reconciler_utils_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /index.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/index.Dockerfile -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/main.go -------------------------------------------------------------------------------- /pr_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/pr_check.sh -------------------------------------------------------------------------------- /readme-ide-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/readme-ide-run.png -------------------------------------------------------------------------------- /runners/generic_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/runners/generic_runner.go -------------------------------------------------------------------------------- /templates/crc-secret-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/templates/crc-secret-template.yml -------------------------------------------------------------------------------- /templates/secrets-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/observability-operator/HEAD/templates/secrets-template.yml --------------------------------------------------------------------------------