mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-02 13:23:13 +00:00
- Update paths and orchestration for deployers (compose/k8s/local/docker) - Consolidate scripts helpers and refresh book/README docs
17 lines
419 B
YAML
17 lines
419 B
YAML
{{- if eq .Values.kzg.mode "hostPath" }}
|
|
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: {{ include "nomos-runner.fullname" . }}-kzg
|
|
labels:
|
|
{{- include "nomos-runner.labels" . | nindent 4 }}
|
|
spec:
|
|
accessModes:
|
|
- ReadOnlyMany
|
|
storageClassName: manual
|
|
volumeName: {{ include "nomos-runner.fullname" . }}-kzg
|
|
resources:
|
|
requests:
|
|
storage: {{ .Values.kzg.storageSize }}
|
|
{{- end }}
|