Created
July 31, 2020 22:39
-
-
Save noseka1/c72ed2c245a2cd84a72891045e8e3279 to your computer and use it in GitHub Desktop.
Mount NFS on pod
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: Pod | |
metadata: | |
name: nfs-client | |
spec: | |
containers: | |
- image: quay.io/noseka1/openshift-toolbox:basic | |
name: openshift-toolbox | |
volumeMounts: | |
- name: nfs-volume | |
mountPath: /home/toolbox | |
volumes: | |
- name: nfs-volume | |
nfs: | |
server: 10.130.2.5 | |
path: /home/toolbox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment