Skip to content

Commit

Permalink
Ensure AppWithoutTeamAnnotation only pages for Giant Swarm catalogs (#…
Browse files Browse the repository at this point in the history
…929)

* Ensure AppWithoutTeamAnnotation only pages for Giant Swarm catalogs

* Update app.rules.yml
  • Loading branch information
QuentinBisson authored Oct 11, 2023
1 parent 9a9e9ce commit ceecada
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- Fix link for node exporter opsrecipe
- Fix AppWithoutTeamAnnotation so it only pages for Giant Swarm catalogs.

## [2.138.0] - 2023-10-05

Expand Down
4 changes: 2 additions & 2 deletions helm/prometheus-rules/templates/alerting-rules/app.rules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ spec:
description: '{{`App {{ $labels.name }} has no team label.`}}'
opsrecipe: app-without-team-annotation/
{{- if eq .Values.managementCluster.provider.flavor "capi" }}
expr: label_replace(app_operator_app_info{team=~"^$|noteam"}, "cluster_id", "$1", "name", "([a-zA-Z0-9]+)-.*") == 1
expr: label_replace(app_operator_app_info{team=~"^$|noteam", catalog=~"giantswarm.*|control-plane(-test)?-catalog|cluster(-test)?|default(-test)?|releases(-test)?"}, "cluster_id", "$1", "name", "([a-zA-Z0-9]+)-.*") == 1
{{- else }}
expr: label_replace(app_operator_app_info{team=~"^$|noteam"}, "cluster_id", "$1", "namespace", {{ include "namespaceNotGiantswarm" . }}) == 1
expr: label_replace(app_operator_app_info{team=~"^$|noteam", catalog=~"giantswarm.*|control-plane(-test)?-catalog|cluster(-test)?|default(-test)?|releases(-test)?"}, "cluster_id", "$1", "namespace", {{ include "namespaceNotGiantswarm" . }}) == 1
{{- end }}
for: 40m
labels:
Expand Down

0 comments on commit ceecada

Please sign in to comment.