Statistics
| Branch: | Tag: | Revision:

root / lib / constants.py @ 5c947f38

History | View | Annotate | Download (2.3 kB)

1
#!/usr/bin/python
2
#
3

    
4
# Copyright (C) 2006, 2007 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
"""Module holding different constants."""
23

    
24
# various versions
25
CONFIG_VERSION = 3
26
PROTOCOL_VERSION = 2
27
RELEASE_VERSION = "1.2a1"
28
OS_API_VERSION = 4
29
EXPORT_VERSION = 0
30

    
31

    
32
# file paths
33
DATA_DIR = "/var/lib/ganeti"
34
CLUSTER_CONF_FILE = DATA_DIR + "/config.data"
35
SSL_CERT_FILE = DATA_DIR + "/server.pem"
36
WATCHER_STATEFILE = DATA_DIR + "/restart_state"
37

    
38
NODE_INITD_SCRIPT = "/etc/init.d/ganeti"
39
DEFAULT_NODED_PORT = 1811
40
FIRST_DRBD_PORT = 11000
41
LAST_DRBD_PORT = 14999
42
MASTER_SCRIPT = "ganeti-master"
43

    
44
LOG_DIR = "/var/log/ganeti"
45
LOG_OS_DIR = LOG_DIR + "/os"
46
LOG_NODESERVER = LOG_DIR + "/node-daemon.log"
47

    
48
OS_DIR = "/srv/ganeti/os"
49
EXPORT_DIR = "/srv/ganeti/export"
50

    
51
EXPORT_CONF_FILE = "config.ini"
52

    
53
# hooks-related constants
54
HOOKS_BASE_DIR = "/etc/ganeti/hooks"
55
HOOKS_PHASE_PRE = "pre"
56
HOOKS_PHASE_POST = "post"
57
HOOKS_VERSION = 1
58

    
59
# hooks subject type (what object type does the LU deal with)
60
HTYPE_CLUSTER = "CLUSTER"
61
HTYPE_NODE = "NODE"
62
HTYPE_INSTANCE = "INSTANCE"
63

    
64
HKR_SKIP = 0
65
HKR_FAIL = 1
66
HKR_SUCCESS = 2
67

    
68
# disk template types
69
DT_DISKLESS = "diskless"
70
DT_PLAIN = "plain"
71
DT_LOCAL_RAID1 = "local_raid1"
72
DT_REMOTE_RAID1 = "remote_raid1"
73

    
74
# instance creation modem
75
INSTANCE_CREATE = "create"
76
INSTANCE_IMPORT = "import"
77

    
78
DISK_TEMPLATES = frozenset([DT_DISKLESS, DT_PLAIN,
79
                            DT_LOCAL_RAID1, DT_REMOTE_RAID1])
80

    
81
# import/export config options
82
INISECT_EXP = "export"
83
INISECT_INS = "instance"
84

    
85
# common exit codes
86
EXIT_NOTMASTER = 11
87

    
88
# tags
89
TAG_CLUSTER = "cluster"
90
TAG_NODE = "node"
91
TAG_INSTANCE = "instance"
92
MAX_TAG_LEN = 128
93
MAX_TAGS_PER_OBJ = 4096
94

    
95
# others
96
DEFAULT_BRIDGE = "xen-br0"
97
SYNC_SPEED = 30 * 1024