Skip to content

Instantly share code, notes, and snippets.

@glendmaatita
Created January 29, 2025 12:50
Show Gist options
  • Save glendmaatita/791903b1944da6fc1b0c3d6ba37e5bd7 to your computer and use it in GitHub Desktop.
Save glendmaatita/791903b1944da6fc1b0c3d6ba37e5bd7 to your computer and use it in GitHub Desktop.
Harbor Volume
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: harbor-registry-pvc
spec:
accessModes: [ReadWriteOnce]
resources: { requests: { storage: 160Gi } }
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: harbor-trivy-pvc
spec:
accessModes: [ReadWriteOnce]
resources: { requests: { storage: 5Gi } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment