mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-05 14:53:11 +00:00
19 lines
469 B
YAML
19 lines
469 B
YAML
{{- if eq .Values.kzg.mode "hostPath" }}
|
|
apiVersion: v1
|
|
kind: PersistentVolume
|
|
metadata:
|
|
name: {{ include "nomos-runner.fullname" . }}-kzg
|
|
labels:
|
|
{{- include "nomos-runner.labels" . | nindent 4 }}
|
|
spec:
|
|
capacity:
|
|
storage: {{ .Values.kzg.storageSize }}
|
|
accessModes:
|
|
- ReadOnlyMany
|
|
persistentVolumeReclaimPolicy: Delete
|
|
storageClassName: manual
|
|
hostPath:
|
|
path: {{ .Values.kzg.hostPath }}
|
|
type: {{ .Values.kzg.hostPathType }}
|
|
{{- end }}
|