Skip to content

Commit

Permalink
Merge pull request #455 from yuvipanda/nfs-share-creator
Browse files Browse the repository at this point in the history
Add inline comments to nfs-share-creator
  • Loading branch information
consideRatio authored Jun 8, 2021
2 parents 95af9d0 + 4157f25 commit 76a72d2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions hub-templates/basehub/templates/nfs-share-creator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,19 @@ spec:
command:
- /bin/sh
- -c
# ${NFS_SHARE_NAME} starts with `/`
- "mkdir -p /mnt${NFS_SHARE_NAME} && chown 1000:1000 /mnt${NFS_SHARE_NAME} && mount && ls -la /mnt/"
volumeMounts:
# Mount the the base of the filesystem (which must be "/" on EFS as
# it will hang if trying to mount a path that isn't created
# already).
- name: home-base
# Put this under /mnt, in case baseShareName is just / (like in EFS)
mountPath: /mnt{{ .Values.nfsPVC.nfs.baseShareName }}
volumes:
# Directly references the NFS server in order to create folders and
# update permissions. Note that this does not rely on the PV or PVC
# objects to be created.
- name: home-base
nfs:
server: {{ .Values.nfsPVC.nfs.serverIP | quote}}
path: {{ .Values.nfsPVC.nfs.baseShareName | quote}}
server: {{ .Values.nfsPVC.nfs.serverIP | quote }}
path: {{ .Values.nfsPVC.nfs.baseShareName | quote }}
{{ end }}

0 comments on commit 76a72d2

Please sign in to comment.