add ssl certificate fields for Monitor in default_config.xml
[bootmanager.git] / source / configuration
1 # this file contains a list of variables
2 # to import to the INSTALL_STORE before
3 # any of the steps run.
4
5
6 # the current version of the bootmanager
7 VERSION=3.2
8
9 # this is the server to contact if we don't have a bootcd
10 DEFAULT_BOOT_SERVER=boot.planet-lab.org
11 # full url to which api server to contact
12 BOOT_API_SERVER=https://boot.planet-lab.org:443/PLCAPI/
13
14 # keep redundant information to plc_config for simplicity
15 BOOT_SERVER=boot.planet-lab.org
16
17 # hostname for MyOps server
18 MONITOR_SERVER=monitor.planet-lab.org
19 #UPLOAD_LOG_SCRIPT=/monitor/upload
20 UPLOAD_LOG_SCRIPT=/boot/upload-bmlog.php
21
22 # bootcd variables : use %(path)s for path relative to bootcd
23 BOOTCD_VERSION_FILE='%(path)s/bootme/ID'
24 SERVER_CERT_DIR=/tmp/source/cacert
25 CACERT_NAME=cacert.pem
26
27
28 # path to store temporary files during the install,
29 # do not include trailing slashes
30 TEMP_PATH=/tmp/mnt
31
32
33 # path to the system mount point
34 SYSIMG_PATH=/tmp/mnt/sysimg
35
36
37 # where the cacerts for the boot cd can be found
38 # currently, this must start with /mnt/cdrom
39 # which is hardcoded in the installer
40 CACERT_PATH=/mnt/cdrom/bootme/cacert
41
42
43 # the nonce the boot cd created, need to authenticate
44 # requests that are made to the boot server
45 NONCE_FILE=/tmp/nonce
46
47
48 # directory containing planetlab specific configuration
49 # files, like the http_proxy file
50 PLCONF_DIR=/etc/planetlab
51
52
53 # directory on the boot server containing
54 # support files and scripts
55 SUPPORT_FILE_DIR=/boot
56
57
58 # this sets the size of the root logical volume,
59 # after the root and swap has been created, remaining
60 # goes to the vserver partition
61 ROOT_SIZE=7G
62
63
64 # override the swap size
65 SWAP_SIZE=1G
66
67
68 # in raw disk mode, the size of /vservers
69 # if unset or -1, use the entire first disk
70 VSERVERS_SIZE=-1
71
72
73 # whether or not to skip hardware requirement check
74 SKIP_HARDWARE_REQUIREMENT_CHECK=0
75
76
77 # minimum amount of memory needed for installer, in kb
78 MINIMUM_MEMORY=511000
79
80
81 # minimum block disk size in GB to be added to lvm.
82 # if any block devices are smaller than this, they are ignored.
83 MINIMUM_DISK_SIZE=17
84
85
86 # total minimum disk size in GB if all usable disks are below this
87 # size, the node cannot be installed
88 TOTAL_MINIMUM_DISK_SIZE=50
89
90
91 # set of langugase for install (used in /etc/rpm/macros)
92 INSTALL_LANGS=en_US
93
94
95 # number of auth failures before starting debug mode
96 NUM_AUTH_FAILURES_BEFORE_DEBUG=2
97
98
99 # location of file containing http/https proxy info, if needed
100 PROXY_FILE=/etc/planetlab/http_proxy