Created
May 25, 2020 22:14
-
-
Save zycon/a1a1dab5c223e977f8df9c61e5204df6 to your computer and use it in GitHub Desktop.
NFS PVC Claim
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: PersistentVolume | |
metadata: | |
name: nfs-storage-logs | |
namespace: default | |
spec: | |
capacity: | |
storage: 50Gi | |
accessModes: | |
- ReadWriteMany | |
nfs: | |
server: nfs-server.default.svc.cluster.local | |
path: "/logs" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment