-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rename monitoring-stack-operator to observability-operator
This patch addresses Issue #145. With expansion of the scope of the operator to a more generic observability operator used of deploying Monitoring, Logging and Tracing stacks, rename the operator to Observability Operator. Significant changes other than renaming are * create separate directory in deployment for `monitoring` related resources like prometheus, alertmanager rules. * Move monitoring api to `pkg/apis/monitoring` directory * Move monitoring controllers to `pkg/controllers/monitoring` directory * Move to quay.io/rhobs/observability-operator image repository Signed-off-by: Sunil Thaha <sthaha@redhat.com>
- Loading branch information
Showing
45 changed files
with
250 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
* @rhobs/monitoring-stack-operator-maintainers | ||
* @rhobs/monitoring-stack-operator-maintainers | ||
* @rhobs/observability-operator-maintainers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 10 additions & 8 deletions
18
...stack-operator.clusterserviceversion.yaml → ...ility-operator.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
resources: | ||
- monitoring-stack-operator-deployment.yaml | ||
- monitoring-stack-operator-service-account.yaml | ||
- monitoring-stack-operator-cluster-role.yaml | ||
- monitoring-stack-operator-cluster-role-binding.yaml | ||
- monitoring-stack-operator-service.yaml | ||
- monitoring-stack-operator-service-monitor.yaml | ||
- monitoring-stack-operator-rules.yaml | ||
- monitoring-stack-operator-alertmanager-rules.yaml | ||
- monitoring-stack-operator-prometheus-operator-rules.yaml | ||
- monitoring-stack-operator-prometheus-rules.yaml | ||
- observability-operator-deployment.yaml | ||
- observability-operator-service-account.yaml | ||
- observability-operator-cluster-role.yaml | ||
- observability-operator-cluster-role-binding.yaml | ||
- observability-operator-service.yaml | ||
- observability-operator-service-monitor.yaml | ||
- observability-operator-rules.yaml | ||
- monitoring/monitoring-prometheus-rules.yaml | ||
- monitoring/monitoring-alertmanager-rules.yaml | ||
- monitoring/monitoring-prometheus-operator-rules.yaml | ||
|
||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
images: | ||
- name: monitoring-stack-operator | ||
- name: observability-operator | ||
newTag: 0.0.9 | ||
namespace: operators |
Oops, something went wrong.