Skip to content
Snippets Groups Projects
Commit c4c34a35 authored by Sören Henning's avatar Sören Henning
Browse files

Add dropped records SLO checker to Helm chart

parent cc3e4526
No related branches found
No related tags found
1 merge request!185Add new SLO checker for the metric of skipped/dropped-records
...@@ -64,6 +64,17 @@ spec: ...@@ -64,6 +64,17 @@ spec:
- name: LOG_LEVEL - name: LOG_LEVEL
value: INFO value: INFO
{{- end }} {{- end }}
{{- if .Values.operator.sloChecker.droppedRecordsKStreams.enabled }}
- name: slo-checker-dropped-records-kstreams
image: "{{ .Values.operator.sloChecker.droppedRecordsKStreams.image }}:{{ .Values.operator.sloChecker.droppedRecordsKStreams.imageTag }}"
imagePullPolicy: "{{ .Values.operator.sloChecker.droppedRecordsKStreams.imagePullPolicy }}"
ports:
- containerPort: 80
name: analysis
env:
- name: LOG_LEVEL
value: INFO
{{- end }}
{{- if and .Values.operator.resultsVolume.enabled .Values.operator.resultsVolume.accessSidecar.enabled }} {{- if and .Values.operator.resultsVolume.enabled .Values.operator.resultsVolume.accessSidecar.enabled }}
- name: results-access - name: results-access
image: busybox:stable image: busybox:stable
......
...@@ -256,6 +256,11 @@ operator: ...@@ -256,6 +256,11 @@ operator:
image: ghcr.io/cau-se/theodolite-slo-checker-lag-trend image: ghcr.io/cau-se/theodolite-slo-checker-lag-trend
imageTag: latest imageTag: latest
imagePullPolicy: Always imagePullPolicy: Always
droppedRecordsKStreams:
enabled: true
image: ghcr.io/cau-se/theodolite-slo-checker-dropped-records-kstreams
imageTag: latest
imagePullPolicy: Always
resultsVolume: resultsVolume:
enabled: true enabled: true
......
# Lag Trend SLO Evaluator # Kafka Streams Dropped Record SLO Evaluator
## Execution ## Execution
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment