github.com/smartcontractkit/chainlink-testing-framework/libs@v0.0.0-20240227141906-ec710b4eb1a3/charts/geth-prysm/templates/pv-shared-storage.yaml (about)

     1  apiVersion: v1
     2  kind: PersistentVolume
     3  metadata:
     4    name: {{ .Release.Name }}-chain-state-storage
     5  spec:
     6    capacity:
     7      storage: {{ .Values.storage.size }}
     8    volumeMode: Filesystem
     9    accessModes:
    10      - ReadWriteMany
    11    persistentVolumeReclaimPolicy: Delete
    12    storageClassName: {{ .Values.storage.class }}
    13    hostPath:
    14      # small hack for local, because files on host are not deleted and genesis generation fails due to previous state being still present
    15      path: /tmp/data-{{ now | date "200601021504" }}