6caae1757dedf023ed97276c5db7cf4643747f12
[ganeti-local] / lib / constants.py
1 #
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 from ganeti import _autoconf
25
26 # various versions
27 CONFIG_VERSION = 3
28 PROTOCOL_VERSION = 10
29 RELEASE_VERSION = _autoconf.PACKAGE_VERSION
30 OS_API_VERSION = 5
31 EXPORT_VERSION = 0
32
33
34 # file paths
35 DATA_DIR = _autoconf.LOCALSTATEDIR + "/lib/ganeti"
36 BDEV_CACHE_DIR = _autoconf.LOCALSTATEDIR + "/run/ganeti"
37 LOCK_DIR = _autoconf.LOCALSTATEDIR + "/lock"
38 CLUSTER_CONF_FILE = DATA_DIR + "/config.data"
39 SSL_CERT_FILE = DATA_DIR + "/server.pem"
40 WATCHER_STATEFILE = DATA_DIR + "/watcher.data"
41 SSH_KNOWN_HOSTS_FILE = DATA_DIR + "/known_hosts"
42 ETC_HOSTS = "/etc/hosts"
43
44 NODE_INITD_SCRIPT = _autoconf.SYSCONFDIR + "/init.d/ganeti"
45 DEFAULT_NODED_PORT = 1811
46 FIRST_DRBD_PORT = 11000
47 LAST_DRBD_PORT = 14999
48 MASTER_SCRIPT = "ganeti-master"
49
50 LOG_DIR = _autoconf.LOCALSTATEDIR + "/log/ganeti"
51 LOG_OS_DIR = LOG_DIR + "/os"
52 LOG_NODESERVER = LOG_DIR + "/node-daemon.log"
53 LOG_WATCHER = LOG_DIR + "/watcher.log"
54
55 OS_SEARCH_PATH = _autoconf.OS_SEARCH_PATH
56 EXPORT_DIR = _autoconf.EXPORT_DIR
57
58 EXPORT_CONF_FILE = "config.ini"
59
60 XEN_KERNEL = _autoconf.XEN_KERNEL
61 XEN_INITRD = _autoconf.XEN_INITRD
62
63 # hooks-related constants
64 HOOKS_BASE_DIR = _autoconf.SYSCONFDIR + "/ganeti/hooks"
65 HOOKS_PHASE_PRE = "pre"
66 HOOKS_PHASE_POST = "post"
67 HOOKS_NAME_CFGUPDATE = "config-update"
68 HOOKS_VERSION = 1
69
70 # hooks subject type (what object type does the LU deal with)
71 HTYPE_CLUSTER = "CLUSTER"
72 HTYPE_NODE = "NODE"
73 HTYPE_INSTANCE = "INSTANCE"
74
75 HKR_SKIP = 0
76 HKR_FAIL = 1
77 HKR_SUCCESS = 2
78
79 # disk template types
80 DT_DISKLESS = "diskless"
81 DT_PLAIN = "plain"
82 DT_LOCAL_RAID1 = "local_raid1"
83 DT_REMOTE_RAID1 = "remote_raid1"
84 DT_DRBD8 = "drbd"
85
86 # the set of network-mirrored disk templates
87 DTS_NET_MIRROR = frozenset([DT_REMOTE_RAID1, DT_DRBD8])
88
89 # logical disk types
90 LD_LV = "lvm"
91 LD_MD_R1 = "md_raid1"
92 LD_DRBD7 = "drbd"
93 LD_DRBD8 = "drbd8"
94
95 # the set of drbd-like disk types
96 LDS_DRBD = frozenset([LD_DRBD7, LD_DRBD8])
97
98 # disk replacement mode
99 REPLACE_DISK_PRI = "replace_primary"
100 REPLACE_DISK_SEC = "replace_secondary"
101 REPLACE_DISK_ALL = "replace_all"
102
103 # instance creation modem
104 INSTANCE_CREATE = "create"
105 INSTANCE_IMPORT = "import"
106
107 DISK_TEMPLATES = frozenset([DT_DISKLESS, DT_PLAIN,
108                             DT_LOCAL_RAID1, DT_REMOTE_RAID1,
109                             DT_DRBD8])
110
111 # import/export config options
112 INISECT_EXP = "export"
113 INISECT_INS = "instance"
114
115 # common exit codes
116 EXIT_SUCCESS = 0
117 EXIT_NOTMASTER = 11
118 EXIT_NODESETUP_ERROR = 12
119 EXIT_CONFIRMATION = 13 # need user confirmation
120
121 # tags
122 TAG_CLUSTER = "cluster"
123 TAG_NODE = "node"
124 TAG_INSTANCE = "instance"
125 MAX_TAG_LEN = 128
126 MAX_TAGS_PER_OBJ = 4096
127
128 # others
129 DEFAULT_BRIDGE = "xen-br0"
130 SYNC_SPEED = 30 * 1024
131 LOCALHOST_IP_ADDRESS = "127.0.0.1"
132 TCP_PING_TIMEOUT = 10
133 GANETI_RUNAS = "root"
134
135 # valid os status
136 OS_VALID_STATUS = "VALID"
137
138 # ssh constants
139 SSH_INITD_SCRIPT = _autoconf.SSH_INITD_SCRIPT
140 SSH_CONFIG_DIR = "/etc/ssh/"
141 SSH_HOST_DSA_PRIV = SSH_CONFIG_DIR + "ssh_host_dsa_key"
142 SSH_HOST_DSA_PUB = SSH_HOST_DSA_PRIV + ".pub"
143 SSH_HOST_RSA_PRIV = SSH_CONFIG_DIR + "ssh_host_rsa_key"
144 SSH_HOST_RSA_PUB = SSH_HOST_RSA_PRIV + ".pub"
145
146 # reboot types
147 INSTANCE_REBOOT_SOFT = "soft"
148 INSTANCE_REBOOT_HARD = "hard"
149 INSTANCE_REBOOT_FULL = "full"
150
151 # Hypervisor constants
152 HT_XEN_PVM30 = "xen-3.0"
153 HT_FAKE = "fake"
154 HT_XEN_HVM31 = "xen-hvm-3.1"
155 HYPER_TYPES = frozenset([HT_XEN_PVM30, HT_FAKE, HT_XEN_HVM31])
156 HTS_REQ_PORT = frozenset([HT_XEN_HVM31])
157
158 HT_HVM_VNC_BASE_PORT = 5900
159 VNC_PASSWORD_FILE = _autoconf.SYSCONFDIR + "/ganeti/vnc-cluster-password"