Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions incubator/service-level-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
description: Service level operator abstracts and automates the service level of Kubernetes applications by generation SLI & SLOs to be consumed easily by dashboards and alerts and allow that the SLI/SLO's live with the application flow.
name: service-level-operator
version: 0.1.0
appVersion: "v0.2.0"
version: 0.1.1
appVersion: "v0.3.0"
home: https://github.com/spotahome/service-level-operator
sources:
- https://github.com/spotahome/service-level-operator
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
subjects:
- kind: ServiceAccount
name: {{ include "service-operator.name" . }}
namespace: monitoring
namespace: {{ .Release.Namespace }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
component: app
namespaceSelector:
matchNames:
- monitoring
- {{ .Release.Namespace }}
endpoints:
- port: http
interval: 10s
interval: {{ .Values.serviceMonitor.interval }}
6 changes: 4 additions & 2 deletions incubator/service-level-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
## Set default image, imageTag, and imagePullPolicy.
image:
repository: quay.io/spotahome/service-level-operator
tag: "v0.2.0"
tag: "v0.3.0"
pullPolicy: "IfNotPresent"
readinessProbe:
httpGet:
Expand All @@ -24,4 +24,6 @@ resources:
requests:
cpu: 120m
memory: 128Mi
prometheus: prometheus-operator-prometheus
prometheus: prometheus-operator-prometheus
serviceMonitor:
interval: 10s