mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-07 15:53:10 +00:00
17 lines
417 B
YAML
17 lines
417 B
YAML
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 }}
|