Created
January 29, 2025 12:50
-
-
Save glendmaatita/791903b1944da6fc1b0c3d6ba37e5bd7 to your computer and use it in GitHub Desktop.
Harbor Volume
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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