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

Make SLO checker configurable

parent 2c17ca80
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!129Enhance Helming,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
Pipeline #3736 canceled
......@@ -29,15 +29,17 @@ spec:
volumeMounts:
- name: benchmark-resources
mountPath: /work/benchmark-resources
- name: lag-analysis
image: ghcr.io/cau-se/theodolite-slo-checker-lag-trend:theodolite-kotlin-latest
imagePullPolicy: Always
{{- if .Values.operator.slo-checker.lag-trend.enabled }}
- name: lag-trend-slo-checker
image: "{{ .Values.operator.slo-checker.lag-trend.image }}:{{ .Values.operator.slo-checker.lag-trend.imageTag }}"
imagePullPolicy: "{{ .Values.operator.slo-checker.lag-trend.imagePullPolicy }}"
ports:
- containerPort: 80
name: analysis
env:
- name: LOG_LEVEL
value: INFO
{{- end }}
volumes:
- name: benchmark-resources
configMap:
......
......@@ -255,6 +255,13 @@ operator:
benchmarkCRD:
create: true
slo-checker:
lag-trend:
enabled: true
image: ghcr.io/cau-se/theodolite-slo-checker-lag-trend
imageTag: theodolite-kotlin-latest
imagePullPolicy: Always
serviceAccount:
create: true
......
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