Statistics
| Branch: | Tag: | Revision:

root / settings.d / 10-backend.conf @ 5039a44f

History | View | Annotate | Download (1.2 kB)

1 1277fb19 Vangelis Koukis
# -*- coding: utf-8 -*-
2 1277fb19 Vangelis Koukis
#
3 1277fb19 Vangelis Koukis
# Ganeti backend configuration
4 1277fb19 Vangelis Koukis
###################################
5 1277fb19 Vangelis Koukis
6 1277fb19 Vangelis Koukis
# The RAPI endpoint and associated credentials to use
7 1277fb19 Vangelis Koukis
# for talking to the Ganeti backend.
8 1277fb19 Vangelis Koukis
GANETI_MASTER_IP = "62.217.120.78"
9 1277fb19 Vangelis Koukis
GANETI_CLUSTER_INFO = (GANETI_MASTER_IP, 5080, "synnefo", "ocean!")
10 1277fb19 Vangelis Koukis
11 1277fb19 Vangelis Koukis
# This prefix gets used when determining the instance names
12 1277fb19 Vangelis Koukis
# of Synnefo VMs at the Ganeti backend.
13 1277fb19 Vangelis Koukis
# The dash must always appear in the name!
14 1277fb19 Vangelis Koukis
BACKEND_PREFIX_ID = "snf-"
15 2da5f785 Giorgos Verigakis
16 1c382247 Vangelis Koukis
# The following dictionary defines deployment-specific
17 1c382247 Vangelis Koukis
# arguments to the RAPI CreateInstance call.
18 1c382247 Vangelis Koukis
# At a minimum it should contain the
19 1c382247 Vangelis Koukis
# 'disk_template', 'os_provider', and 'hvparams' keys.
20 1c382247 Vangelis Koukis
#
21 1c382247 Vangelis Koukis
# More specifically:
22 1c382247 Vangelis Koukis
# a) disk_template:
23 1c382247 Vangelis Koukis
#    The disk template to use when creating the instance.
24 1c382247 Vangelis Koukis
#    Suggested values: 'plain', or 'drbd'.
25 1c382247 Vangelis Koukis
# b) os:
26 1c382247 Vangelis Koukis
#    The OS provider to use (customized Ganeti Instance Image)
27 1c382247 Vangelis Koukis
# c) hvparams:
28 1c382247 Vangelis Koukis
#    Hypervisor-specific parameters (serial_console = False, see #785)
29 1c382247 Vangelis Koukis
# d) If using the DRBD disk_template, you may want to include
30 1c382247 Vangelis Koukis
#    wait_for_sync = False (see #835).
31 1c382247 Vangelis Koukis
#
32 1c382247 Vangelis Koukis
GANETI_CREATEINSTANCE_KWARGS = {
33 1c382247 Vangelis Koukis
    'disk_template': 'drbd',
34 1c382247 Vangelis Koukis
    'os': 'image+default',
35 1c382247 Vangelis Koukis
    'hvparams': {'serial_console': False},
36 1c382247 Vangelis Koukis
    'wait_for_sync': False}