Skip to content

Instantly share code, notes, and snippets.

@superseb
Created July 7, 2017 16:54
Show Gist options
  • Save superseb/15aada95f6f2fbacc1af7a442c767cce to your computer and use it in GitHub Desktop.
Save superseb/15aada95f6f2fbacc1af7a442c767cce to your computer and use it in GitHub Desktop.
rancheros NFS mount
#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