github.com/GoogleContainerTools/kaniko@v1.23.0/examples/kaniko-cache-volume.yaml (about)

     1  kind: PersistentVolume
     2  apiVersion: v1
     3  metadata:
     4    name: kaniko-cache-volume
     5    labels:
     6      type: local
     7  spec:
     8    storageClassName: manual
     9    capacity:
    10      storage: 10Gi
    11    accessModes:
    12      - ReadOnlyMany
    13    hostPath:
    14      path: "/tmp/kaniko-cache"