Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KLT monitoring using ServiceMonitor #3733

Merged
merged 2 commits into from
Apr 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions gitops/argocd/charts/klt-system/klt/templates/serviceMonitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,27 @@ spec:
jobLabel: k8s-app
selector:
matchLabels:
control-plane: metrics-controller
# TODO: https://github.com/keptn/lifecycle-toolkit/issues/1106
# control-plane: metrics-operator
control-plane: metrics-operator
namespaceSelector:
matchNames:
- {{ .Release.Namespace }}
---
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
labels:
{{- include "keptn-lifecycle-toolkit.labels" . | indent 4 }}
monitoring: portefaix
name: klt-lifecycle-operator-metrics
namespace: {{ .Release.Namespace }}
spec:
endpoints:
- interval: 30s
port: metrics
jobLabel: k8s-app
selector:
matchLabels:
control-plane: lifecycle-operator
namespaceSelector:
matchNames:
- {{ .Release.Namespace }}
Expand Down