Skip to Content
Learn OpenShift
book

Learn OpenShift

by Denis Zuev, Artemii Kropachev, Aleksey Usov
July 2018
Intermediate to advanced
504 pages
11h 34m
English
Packt Publishing
Content preview from Learn OpenShift

Creating PVs for NFS shares

The NFS-related PersistentVolume resource that was created by the OpenShift API can be defined using either a YAML or JSON notation and can be submitted to the API by using the oc create command. Previously, we set up several NFS exports on storage.example.com. Now, we need to create the appropriate PV resources for each of them.

The following example provides a file that can make NFS resources available for OpenShift clusters:

# cat pv-nfsvol1.yamlapiVersion: v1kind: PersistentVolumemetadata:  name: pv-nfsvol1spec:  capacity:    storage: 2Gi   accessModes:    - ReadWriteMany   persistentVolumeReclaimPolicy: Retain   nfs:     path: /exports/nfsvol1    server: storage.example.com    readOnly: false

This file contains the following ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Operating OpenShift

Operating OpenShift

Rick Rackow, Manuel Dewald
OpenShift for Developers, 2nd Edition

OpenShift for Developers, 2nd Edition

Joshua Wood, Brian Tannous
Kubernetes: Up and Running, 2nd Edition

Kubernetes: Up and Running, 2nd Edition

Brendan Burns, Joe Beda, Kelsey Hightower

Publisher Resources

ISBN: 9781788992329Supplemental Content