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

Make persistentVolumeClaim configurable

parent f24d22bd
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!153Store benchmark execution results in operator volume,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
Pipeline #3760 passed
......@@ -31,10 +31,10 @@ spec:
- name: RESULTS_FOLDER
value: "results"
volumeMounts:
{{- if .Values.operator.resultsVolume.enabled }}
{{- if .Values.operator.resultsVolume.enabled }}
- name: theodolite-pv-storage
mountPath: "/deployments/results"
{{- end }}
{{- end }}
- name: benchmark-resources
mountPath: /work/benchmark-resources
{{- if .Values.operator.sloChecker.lagTrend.enabled }}
......@@ -65,7 +65,7 @@ spec:
{{- if .Values.operator.resultsVolume.enabled }}
- name: theodolite-pv-storage
persistentVolumeClaim:
claimName: theodolite-pv-claim
claimName: {{ .Values.operator.resultsVolume.persistentVolumeClaim.name | quote }}
{{- end }}
- name: benchmark-resources
configMap:
......
......@@ -264,6 +264,8 @@ operator:
resultsVolume:
enabled: true
persistentVolumeClaim:
name: theodolite-pv-claim
accessSidecar:
enabled: true
image: busybox
......
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