Created
July 7, 2017 16:54
-
-
Save superseb/15aada95f6f2fbacc1af7a442c767cce to your computer and use it in GitHub Desktop.
rancheros NFS mount
This file contains 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
#cloud-config | |
write_files: | |
- path: /etc/rc.local | |
permissions: "0755" | |
owner: root | |
content: | | |
#!/bin/bash | |
mkdir -p /mnt/nfs-1 | |
mkdir -p /mnt/nfs-2 | |
cloud-init-execute | |
rancher: | |
services: | |
nfs: | |
image: d3fk/nfs-client | |
labels: | |
io.rancher.os.after: console, preload-user-images | |
io.rancher.os.scope: system | |
net: host | |
privileged: true | |
tty: true | |
restart: always | |
volumes: | |
- /usr/bin/iptables:/sbin/iptables:ro | |
mounts: | |
- ["nfs_server_ip:/", "/mnt/nfs-1", "nfs4", ""] | |
- ["nfs_server_ip:/", "/mnt/nfs-2", "nfs4", ""] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment