aboutsummaryrefslogtreecommitdiffstats
path: root/group_vars/master
blob: c30ffdb9eb9787f7436bb0f504131b4aca98c3a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
#
# Variables for the master node only
#

#
# WAN
#

# Interface attached to the WAN
wan_if: eth1

#
# LAN for the cluster nodes
#

# Interface attached to the cluster LAN
lan_if: eth0
# LAN IP for the master
lan_ip: 192.168.233.254

lan_dhcp_begin: 192.168.233.1
lan_dhcp_end: 192.168.233.200
lan_network: 192.168.233.0/24
lan_netmask: 255.255.255.0

#
# Auto system installation for nodes
#

tftp_root: /srv/tftp

# Mirror from where to install packages (HTTP), and security updates.
# This mirror will also be used as the "upstream" of the APT proxy
# for LAN nodes.
apt_mirror: ftp.sjtu.edu.cn

# UID of the first normal user created (can do sudo, which should
# be used as the admin user later.)
node_user_uid: 999

# vim: set ft=yaml sw=2: