Created
December 21, 2019 17:30
-
-
Save sudheerchamarthi/a4a5f233db3d473dbe63f139e8d2b298 to your computer and use it in GitHub Desktop.
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: efs | |
namespace: "rsyslog" | |
spec: | |
capacity: | |
storage: 500Gi | |
volumeMode: Filesystem | |
accessModes: | |
- ReadWriteMany | |
persistentVolumeReclaimPolicy: Retain | |
storageClassName: aws-efs | |
mountOptions: | |
- hard | |
- nfsvers=4.1 | |
nfs: | |
path: / | |
server: fs-xxxx.efs.ap-southeast-1.amazonaws.com | |
--- | |
kind: PersistentVolumeClaim | |
apiVersion: v1 | |
metadata: | |
name: efs | |
namespace: "rsyslog" | |
annotations: | |
volume.beta.kubernetes.io/storage-class: "aws-efs" | |
spec: | |
accessModes: | |
- ReadWriteMany | |
resources: | |
requests: | |
storage: 50Gi | |
--- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment