Statistics
| Branch: | Tag: | Revision:

root / snf-deploy / fabfile.py @ 525d8b20

History | View | Annotate | Download (38 kB)

1
from __future__ import with_statement
2
from fabric.api import *
3
from fabric.contrib.console import confirm
4
from random import choice
5
from fabric.operations import run, put
6
import re
7
import shutil, os
8
from functools import wraps
9
import imp
10
import ConfigParser
11
import sys
12
import tempfile
13
import ast
14
from snfdeploy.lib import *
15
from snfdeploy import massedit
16

    
17

    
18
def setup_env(confdir="conf", packages="packages",
19
              templates="files", cluster_name="ganeti1", autoconf=False, disable_colors=False, key_inject=False):
20
    print("Loading configuration for synnefo...")
21
    print(" * Using config files under %s..." % confdir)
22
    print(" * Using %s and %s for packages and templates accordingly..." % (packages, templates))
23

    
24
    autoconf = ast.literal_eval(autoconf)
25
    disable_colors = ast.literal_eval(disable_colors)
26
    env.key_inject = ast.literal_eval(key_inject)
27
    conf = Conf.configure(confdir=confdir, cluster_name=cluster_name, autoconf=autoconf)
28
    env.env = Env(conf)
29

    
30
    env.local = autoconf
31
    env.password = env.env.password
32
    env.user = env.env.user
33
    env.shell = "/bin/bash -c"
34

    
35
    if disable_colors:
36
        disable_color()
37

    
38
    if env.env.cms.hostname in [env.env.accounts.hostname, env.env.cyclades.hostname, env.env.pithos.hostname]:
39
      env.cms_pass = True
40
    else:
41
      env.cms_pass = False
42

    
43
    if env.env.accounts.hostname in [env.env.cyclades.hostname, env.env.pithos.hostname]:
44
      env.csrf_disable = True
45
    else:
46
      env.csrf_disable = False
47

    
48

    
49
    env.roledefs = {
50
        "nodes": env.env.ips,
51
        "ips": env.env.ips,
52
        "accounts": [env.env.accounts.ip],
53
        "cyclades": [env.env.cyclades.ip],
54
        "pithos": [env.env.pithos.ip],
55
        "cms": [env.env.cms.ip],
56
        "mq": [env.env.mq.ip],
57
        "db": [env.env.db.ip],
58
        "ns": [env.env.ns.ip],
59
        "client": [env.env.client.ip],
60
        "router": [env.env.router.ip],
61
    }
62

    
63
    env.enable_lvm = False
64
    env.enable_drbd = False
65
    if ast.literal_eval(env.env.create_extra_disk) and env.env.extra_disk:
66
        env.enable_lvm = True
67
        env.enable_drbd = True
68

    
69
    env.roledefs.update({
70
        "ganeti": env.env.cluster_ips,
71
        "master": [env.env.master.ip],
72
    })
73

    
74

    
75
def install_package(package):
76
    debug(env.host, " * Installing package %s..." % package)
77
    APT_GET = "export DEBIAN_FRONTEND=noninteractive ;apt-get install -y --force-yes "
78

    
79
    if ast.literal_eval(env.env.use_local_packages):
80
        with settings(warn_only=True):
81
            deb = local("ls %s/%s*deb" % (env.env.packages, package))
82
            if deb:
83
                debug(env.host, " * Package %s found in %s..." % (package, env.env.packages))
84
                put(deb, "/tmp/")
85
                try_run("dpkg -i /tmp/%s*deb || " % package + APT_GET + "-f")
86
                try_run("rm /tmp/%s*deb" % package)
87
                return
88

    
89
    info = getattr(env.env, package)
90
    if info in ["stable", "squeeze-backports", "testing", "unstable"]:
91
        APT_GET += " -t %s %s " % (info, package)
92
    elif info:
93
        APT_GET += " %s=%s " % (package, info)
94
    else:
95
        APT_GET += package
96

    
97
    try_run(APT_GET)
98

    
99
    return
100

    
101

    
102
@roles("ns")
103
def update_ns_for_ganeti():
104
    debug(env.host, "Updating name server entries for backend %s..." % env.env.cluster.fqdn)
105
    update_arecord(env.env.cluster)
106
    update_ptrrecord(env.env.cluster)
107
    try_run("/etc/init.d/bind9 restart")
108

    
109

    
110
@roles("ns")
111
def update_ns_for_node(node):
112
    info = env.env.nodes_info.get(node)
113
    update_arecord(info)
114
    update_ptrrecord(info)
115
    try_run("/etc/init.d/bind9 restart")
116

    
117

    
118
@roles("ns")
119
def update_arecord(host):
120
    filename = "/etc/bind/zones/" + env.env.domain
121
    cmd = """
122
    echo '{0}' >> {1}
123
    """.format(host.arecord, filename)
124
    try_run(cmd)
125

    
126

    
127
@roles("ns")
128
def update_cnamerecord(host):
129
    filename = "/etc/bind/zones/" + env.env.domain
130
    cmd = """
131
    echo '{0}' >> {1}
132
    """.format(host.cnamerecord, filename)
133
    try_run(cmd)
134

    
135

    
136
@roles("ns")
137
def update_ptrrecord(host):
138
    filename = "/etc/bind/rev/synnefo.in-addr.arpa.zone"
139
    cmd = """
140
    echo '{0}' >> {1}
141
    """.format(host.ptrrecord, filename)
142
    try_run(cmd)
143

    
144
@roles("nodes")
145
def apt_get_update():
146
    debug(env.host, "apt-get update....")
147
    try_run("apt-get update")
148

    
149
@roles("ns")
150
def setup_ns():
151
    debug(env.host, "Setting up name server..")
152
    #WARNING: this should be remove after we are done
153
    # because gevent does pick randomly nameservers and google does
154
    # not know our setup!!!!!
155
    apt_get_update()
156
    install_package("bind9")
157
    tmpl = "/etc/bind/named.conf.local"
158
    replace = {
159
      "domain": env.env.domain,
160
      }
161
    custom = customize_settings_from_tmpl(tmpl, replace)
162
    put(custom, tmpl)
163

    
164
    try_run("mkdir -p /etc/bind/zones")
165
    tmpl = "/etc/bind/zones/example.com"
166
    replace = {
167
      "domain": env.env.domain,
168
      "ns_node_ip": env.env.ns.ip,
169
      }
170
    custom = customize_settings_from_tmpl(tmpl, replace)
171
    remote = "/etc/bind/zones/" + env.env.domain
172
    put(custom, remote)
173

    
174
    try_run("mkdir -p /etc/bind/rev")
175
    tmpl = "/etc/bind/rev/synnefo.in-addr.arpa.zone"
176
    replace = {
177
      "domain": env.env.domain,
178
      }
179
    custom = customize_settings_from_tmpl(tmpl, replace)
180
    put(custom, tmpl)
181

    
182
    tmpl = "/etc/bind/named.conf.options"
183
    replace = {
184
      "NODE_IPS": ";".join(env.env.ips),
185
      }
186
    custom = customize_settings_from_tmpl(tmpl, replace)
187
    put(custom, tmpl, mode=0644)
188

    
189
    for role, info in env.env.roles.iteritems():
190
        if role == "ns":
191
            continue
192
        update_cnamerecord(info)
193
    for node, info in env.env.nodes_info.iteritems():
194
        update_arecord(info)
195
        update_ptrrecord(info)
196

    
197
    try_run("/etc/init.d/bind9 restart")
198

    
199

    
200
@roles("nodes")
201
def check_dhcp():
202
    debug(env.host, "Checking IPs for synnefo..")
203
    for n, info in env.env.nodes_info.iteritems():
204
        try_run("ping -c 1 " + info.ip, True)
205

    
206
@roles("nodes")
207
def check_dns():
208
    debug(env.host, "Checking fqdns for synnefo..")
209
    for n, info in env.env.nodes_info.iteritems():
210
        try_run("ping -c 1 " + info.fqdn, True)
211

    
212
    for n, info in env.env.roles.iteritems():
213
        try_run("ping -c 1 " + info.fqdn, True)
214

    
215
@roles("nodes")
216
def check_connectivity():
217
    debug(env.host, "Checking internet connectivity..")
218
    try_run("ping -c 1 www.google.com", True)
219

    
220

    
221
@roles("nodes")
222
def check_ssh():
223
    debug(env.host, "Checking password-less ssh..")
224
    for n, info in env.env.nodes_info.iteritems():
225
        try_run("ssh " + info.fqdn + "  date", True)
226

    
227

    
228
@roles("ips")
229
def add_keys():
230
    if not env.key_inject:
231
      debug(env.host, "Skipping ssh keys injection..")
232
      return
233
    else:
234
      debug(env.host, "Adding rsa/dsa keys..")
235
    try_run("mkdir -p /root/.ssh")
236
    cmd = """
237
for f in $(ls /root/.ssh/*); do
238
  cp $f $f.bak
239
done
240
    """
241
    try_run(cmd)
242
    files = ["authorized_keys", "id_dsa", "id_dsa.pub",
243
             "id_rsa", "id_rsa.pub"]
244
    for f in files:
245
      tmpl = "/root/.ssh/" + f
246
      replace = {}
247
      custom = customize_settings_from_tmpl(tmpl, replace)
248
      put(custom, tmpl, mode=0600)
249

    
250
    cmd = """
251
if [ -e /root/.ssh/authorized_keys.bak ]; then
252
  cat /root/.ssh/authorized_keys.bak >> /root/.ssh/authorized_keys
253
fi
254
    """
255
    debug(env.host, "Updating exising authorized keys..")
256
    try_run(cmd)
257

    
258
@roles("ips")
259
def setup_resolv_conf():
260
    debug(env.host, "Tweak /etc/resolv.conf...")
261
    try_run("/etc/init.d/network-manager stop")
262
    tmpl = "/etc/dhcp/dhclient-enter-hooks.d/nodnsupdate"
263
    replace = {}
264
    custom = customize_settings_from_tmpl(tmpl, replace)
265
    put(custom, tmpl, mode=0644)
266
    try_run("cp /etc/resolv.conf /etc/resolv.conf.bak")
267
    tmpl = "/etc/resolv.conf"
268
    replace = {
269
      "domain": env.env.domain,
270
      "ns_node_ip": env.env.ns.ip,
271
      }
272
    custom = customize_settings_from_tmpl(tmpl, replace)
273
    try:
274
      put(custom, tmpl)
275
    except:
276
      pass
277
    try_run("chattr +i /etc/resolv.conf")
278

    
279

    
280
@roles("ips")
281
def setup_hosts():
282
    debug(env.host, "Tweaking /etc/hosts and ssh_config files...")
283
    try_run("echo StrictHostKeyChecking no >> /etc/ssh/ssh_config")
284
    cmd = " sed -i 's/^127.*/127.0.0.1 localhost/' /etc/hosts "
285
    try_run(cmd)
286
    host_info = env.env.ips_info[env.host]
287
    cmd = "hostname %s" % host_info.hostname
288
    try_run(cmd)
289
    cmd = "echo %s > /etc/hostname" % host_info.hostname
290
    try_run(cmd)
291

    
292

    
293
def try_run(cmd, abort=False):
294
    try:
295
      if env.local:
296
        return local(cmd, capture=True)
297
      else:
298
        return run(cmd)
299
    except:
300
      debug(env.host, "WARNING: command failed. Continuing anyway...")
301
      if abort:
302
        raise
303

    
304
def create_bridges():
305
    debug(env.host, " * Creating bridges...")
306
    install_package("bridge-utils")
307
    cmd = """
308
    brctl addbr {0} ; ip link set {0} up
309
    """.format(env.env.common_bridge)
310
    try_run(cmd)
311

    
312

    
313
def connect_bridges():
314
    debug(env.host, " * Connecting bridges...")
315
    cmd = """
316
    brctl addif {0} {1}
317
    """.format(env.env.common_bridge, env.env.public_iface)
318
    #try_run(cmd)
319

    
320

    
321
@roles("ganeti")
322
def setup_net_infra():
323
    debug(env.host, "Setup networking infrastracture..")
324
    create_bridges()
325
    connect_bridges()
326

    
327

    
328
@roles("ganeti")
329
def setup_lvm():
330
    debug(env.host, "create volume group %s for ganeti.." % env.env.vg)
331
    if env.enable_lvm:
332
        install_package("lvm2")
333
        cmd = """
334
        pvcreate {0}
335
        vgcreate {1} {0}
336
        """.format(env.env.extra_disk, env.env.vg)
337
        try_run(cmd)
338

    
339

    
340
def customize_settings_from_tmpl(tmpl, replace):
341
    debug(env.host, " * Customizing template %s..." % tmpl)
342
    local = env.env.templates + tmpl
343
    _, custom = tempfile.mkstemp()
344
    shutil.copyfile(local, custom)
345
    for k, v in replace.iteritems():
346
        regex = "re.sub('%{0}%', '{1}', line)".format(k.upper(), v)
347
        massedit.edit_files([custom], [regex], dry_run=False)
348

    
349
    return custom
350

    
351

    
352
@roles("nodes")
353
def setup_apt():
354
    debug(env.host, "Setting up apt sources...")
355
    install_package("curl")
356
    cmd = """
357
    echo 'APT::Install-Suggests "false";' >> /etc/apt/apt.conf
358
    curl -k https://dev.grnet.gr/files/apt-grnetdev.pub | apt-key add -
359
    """
360
    try_run(cmd)
361
    tmpl = "/etc/apt/sources.list.d/okeanos.list"
362
    replace = {}
363
    custom = customize_settings_from_tmpl(tmpl, replace)
364
    put(custom, tmpl)
365
    apt_get_update()
366

    
367

    
368
@roles("cyclades", "cms", "pithos", "accounts")
369
def restart_services():
370
    debug(env.host, " * Restarting apache2 and gunicorn...")
371
    try_run("/etc/init.d/gunicorn restart")
372
    try_run("/etc/init.d/apache2 restart")
373

    
374

    
375
def setup_gunicorn():
376
    debug(env.host, " * Setting up gunicorn...")
377
    install_package("gunicorn")
378
    tmpl = "/etc/gunicorn.d/synnefo"
379
    replace = {}
380
    custom = customize_settings_from_tmpl(tmpl, replace)
381
    put(custom, tmpl, mode=0644)
382
    try_run("/etc/init.d/gunicorn restart")
383

    
384

    
385
def setup_apache():
386
    debug(env.host, " * Setting up apache2...")
387
    host_info = env.env.ips_info[env.host]
388
    install_package("apache2")
389
    tmpl = "/etc/apache2/sites-available/synnefo"
390
    replace = {
391
        "HOST": host_info.fqdn,
392
    }
393
    custom = customize_settings_from_tmpl(tmpl, replace)
394
    put(custom, tmpl)
395
    tmpl = "/etc/apache2/sites-available/synnefo-ssl"
396
    custom = customize_settings_from_tmpl(tmpl, replace)
397
    put(custom, tmpl)
398
    cmd = """
399
    a2enmod ssl
400
    a2enmod rewrite
401
    a2dissite default
402
    a2ensite synnefo
403
    a2ensite synnefo-ssl
404
    a2enmod headers
405
    a2enmod proxy_http
406
    a2dismod autoindex
407
    """
408
    try_run(cmd)
409
    try_run("/etc/init.d/apache2 restart")
410

    
411

    
412
@roles("mq")
413
def setup_mq():
414
    debug(env.host, "Setting up RabbitMQ...")
415
    install_package("rabbitmq-server")
416
    cmd = """
417
    rabbitmqctl add_user {0} {1}
418
    rabbitmqctl set_permissions {0} ".*" ".*" ".*"
419
    rabbitmqctl delete_user guest
420
    rabbitmqctl set_user_tags {0} administrator
421
    """.format(env.env.synnefo_user, env.env.synnefo_rabbitmq_passwd)
422
    try_run(cmd)
423
    try_run("/etc/init.d/rabbitmq-server restart")
424

    
425

    
426
@roles("db")
427
def allow_access_in_db(ip, user="all", method="md5"):
428
    cmd = """
429
    echo host all {0} {1}/32 {2} >> /etc/postgresql/8.4/main/pg_hba.conf
430
    """.format(user, ip, method)
431
    try_run(cmd)
432
    cmd = """
433
    sed -i 's/\(host.*127.0.0.1.*\)md5/\\1trust/' /etc/postgresql/8.4/main/pg_hba.conf
434
    """
435
    try_run(cmd)
436
    try_run("/etc/init.d/postgresql restart")
437

    
438
@roles("db")
439
def setup_db():
440
    debug(env.host, "Setting up DataBase server...")
441
    install_package("postgresql")
442

    
443
    tmpl = "/tmp/db-init.psql"
444
    replace = {
445
        "synnefo_user": env.env.synnefo_user,
446
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
447
        }
448
    custom = customize_settings_from_tmpl(tmpl, replace)
449
    put(custom, tmpl)
450
    cmd = 'su - postgres -c "psql -w -f %s" ' % tmpl
451
    try_run(cmd)
452
    cmd = """
453
    echo "listen_addresses = '*'" >> /etc/postgresql/8.4/main/postgresql.conf
454
    """
455
    try_run(cmd)
456

    
457
    allow_access_in_db(env.host, "all", "trust")
458
    try_run("/etc/init.d/postgresql restart")
459

    
460

    
461
@roles("db")
462
def destroy_db():
463
    try_run("""su - postgres -c ' psql -w -c "drop database snf_apps" '""")
464
    try_run("""su - postgres -c ' psql -w -c "drop database snf_pithos" '""")
465

    
466

    
467
def setup_webproject():
468
    debug(env.host, " * Setting up snf-webproject...")
469
    with settings(hide("everything")):
470
        try_run("ping -c1 " + env.env.db.ip)
471
    setup_common()
472
    install_package("snf-webproject")
473
    install_package("python-psycopg2")
474
    install_package("python-gevent")
475
    tmpl = "/etc/synnefo/webproject.conf"
476
    replace = {
477
        "synnefo_user": env.env.synnefo_user,
478
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
479
        "db_node": env.env.db.ip,
480
        "domain": env.env.domain,
481
    }
482
    custom = customize_settings_from_tmpl(tmpl, replace)
483
    put(custom, tmpl, mode=0644)
484
    with settings(host_string=env.env.db.ip):
485
        host_info = env.env.ips_info[env.host]
486
        allow_access_in_db(host_info.ip, "all", "trust")
487
    try_run("/etc/init.d/gunicorn restart")
488

    
489

    
490
def setup_common():
491
    debug(env.host, " * Setting up snf-common...")
492
    host_info = env.env.ips_info[env.host]
493
    install_package("python-objpool")
494
    install_package("snf-common")
495
    install_package("python-astakosclient")
496
    install_package("snf-django-lib")
497
    install_package("snf-branding")
498
    tmpl = "/etc/synnefo/common.conf"
499
    replace = {
500
        #FIXME:
501
        "EMAIL_SUBJECT_PREFIX": env.host,
502
        "domain": env.env.domain,
503
        "HOST": host_info.fqdn,
504
    }
505
    custom = customize_settings_from_tmpl(tmpl, replace)
506
    put(custom, tmpl, mode=0644)
507
    try_run("/etc/init.d/gunicorn restart")
508

    
509
@roles("accounts")
510
def astakos_loaddata():
511
    debug(env.host, " * Loading initial data to astakos...")
512
    cmd = """
513
    snf-manage loaddata groups
514
    """
515
    try_run(cmd)
516

    
517

    
518
@roles("accounts")
519
def astakos_register_services():
520
    debug(env.host, " * Register services in astakos...")
521
    cmd = """
522
    snf-manage component-add "home" https://{0} home-icon.png
523
    snf-manage component-add "cyclades" https://{1}/cyclades/ui/
524
    snf-manage component-add "pithos" https://{2}/pithos/ui/
525
    snf-manage component-add "astakos" https://{3}/astakos/ui/
526
    """.format(env.env.cms.fqdn, env.env.cyclades.fqdn, env.env.pithos.fqdn, env.env.accounts.fqdn)
527
    try_run(cmd)
528
    import_service("astakos")
529
    import_service("pithos")
530
    import_service("cyclades")
531
    tmpl = "/tmp/resources.json"
532
    replace = {}
533
    custom = customize_settings_from_tmpl(tmpl, replace)
534
    put(custom, tmpl)
535
    try_run("snf-manage resource-import --json %s" % tmpl)
536
    cmd = """
537
    snf-manage resource-modify --limit 40G pithos.diskspace
538
    snf-manage resource-modify --limit 2 astakos.pending_app
539
    snf-manage resource-modify --limit 4 cyclades.vm
540
    snf-manage resource-modify --limit 40G cyclades.disk
541
    snf-manage resource-modify --limit 8G cyclades.ram
542
    snf-manage resource-modify --limit 16 cyclades.cpu
543
    snf-manage resource-modify --limit 4 cyclades.network.private
544
    """
545
    try_run(cmd)
546

    
547

    
548
@roles("accounts")
549
def add_user():
550
    debug(env.host, " * adding user %s to astakos..." % env.env.user_email)
551
    email=env.env.user_email
552
    name=env.env.user_name
553
    lastname=env.env.user_lastname
554
    passwd=env.env.user_passwd
555
    cmd = """
556
    snf-manage user-add {0} {1} {2}
557
    """.format(email, name, lastname)
558
    try_run(cmd)
559
    with settings(host_string=env.env.db.ip):
560
        uid, user_auth_token, user_uuid = get_auth_token_from_db(email)
561
    cmd = """
562
    snf-manage user-modify --password {0} {1}
563
    """.format(passwd, uid)
564
    try_run(cmd)
565

    
566

    
567
@roles("accounts")
568
def activate_user(user_email=None):
569
    if not user_email:
570
      user_email = env.env.user_email
571
    debug(env.host, " * Activate user %s..." % user_email)
572
    with settings(host_string=env.env.db.ip):
573
        uid, user_auth_token, user_uuid = get_auth_token_from_db(user_email)
574

    
575
    cmd = """
576
    snf-manage user-modify --verify {0}
577
    snf-manage user-modify --accept {0}
578
    """.format(uid)
579
    try_run(cmd)
580

    
581
@roles("accounts")
582
def setup_astakos():
583
    debug(env.host, "Setting up snf-astakos-app...")
584
    setup_gunicorn()
585
    setup_apache()
586
    setup_webproject()
587
    install_package("python-django-south")
588
    install_package("snf-astakos-app")
589
    install_package("kamaki")
590

    
591
    tmpl = "/etc/synnefo/astakos.conf"
592
    replace = {
593
      "ACCOUNTS": env.env.accounts.fqdn,
594
      "domain": env.env.domain,
595
      "CYCLADES": env.env.cyclades.fqdn,
596
      "PITHOS": env.env.pithos.fqdn,
597
    }
598
    custom = customize_settings_from_tmpl(tmpl, replace)
599
    put(custom, tmpl, mode=0644)
600
    if env.csrf_disable:
601
      cmd = """
602
cat <<EOF >> /etc/synnefo/astakos.conf
603
try:
604
  MIDDLEWARE_CLASSES.remove('django.middleware.csrf.CsrfViewMiddleware')
605
except:
606
  pass
607
EOF
608
"""
609
      try_run(cmd)
610

    
611
    try_run("/etc/init.d/gunicorn restart")
612

    
613
    cmd = """
614
    snf-manage syncdb --noinput
615
    snf-manage migrate im --delete-ghost-migrations
616
    snf-manage migrate quotaholder_app
617
    """
618
    try_run(cmd)
619

    
620
def import_service(service):
621
    tmpl = "/tmp/%s.json" % service
622
    replace = {
623
      "DOMAIN": env.env.domain,
624
      }
625
    custom = customize_settings_from_tmpl(tmpl, replace)
626
    put(custom, tmpl)
627
    try_run("snf-manage service-import --json %s" % tmpl)
628

    
629
@roles("accounts")
630
def get_service_details(service="pithos"):
631
    debug(env.host, " * Getting registered details for %s service..." % service)
632
    result = try_run("snf-manage component-list")
633
    r = re.compile(r".*%s.*" % service, re.M)
634
    service_id, _, _, service_token = r.search(result).group().split()
635
    # print("%s: %s %s" % (service, service_id, service_token))
636
    return (service_id, service_token)
637

    
638

    
639
@roles("db")
640
def get_auth_token_from_db(user_email=None):
641
    if not user_email:
642
        user_email=env.env.user_email
643
    debug(env.host, " * Getting authentication token and uuid for user %s..." % user_email)
644
    cmd = """
645
    echo "select id, auth_token, uuid, email from auth_user, im_astakosuser where auth_user.id = im_astakosuser.user_ptr_id and auth_user.email = '{0}';" > /tmp/psqlcmd
646
    su - postgres -c  "psql -w -d snf_apps -f /tmp/psqlcmd"
647
    """.format(user_email)
648

    
649
    result = try_run(cmd)
650
    r = re.compile(r"(\d+)[ |]*(\S+)[ |]*(\S+)[ |]*" + user_email, re.M)
651
    match = r.search(result)
652
    uid, user_auth_token, user_uuid = match.groups()
653
    # print("%s: %s %s %s" % ( user_email, uid, user_auth_token, user_uuid))
654

    
655
    return (uid, user_auth_token, user_uuid)
656

    
657

    
658
@roles("cms")
659
def cms_loaddata():
660
    debug(env.host, " * Loading cms initial data...")
661
    if env.cms_pass:
662
      debug(env.host, "Aborting. Prerequisites not met.")
663
      return
664
    tmpl = "/tmp/sites.json"
665
    replace = {}
666
    custom = customize_settings_from_tmpl(tmpl, replace)
667
    put(custom, tmpl)
668

    
669
    tmpl = "/tmp/page.json"
670
    replace = {}
671
    custom = customize_settings_from_tmpl(tmpl, replace)
672
    put(custom, tmpl)
673

    
674
    cmd = """
675
    snf-manage loaddata /tmp/sites.json
676
    snf-manage loaddata /tmp/page.json
677
    snf-manage createsuperuser --username=admin --email=admin@{0} --noinput
678
    """.format(env.env.domain)
679
    try_run(cmd)
680

    
681

    
682
@roles("cms")
683
def setup_cms():
684
    debug(env.host, "Setting up cms...")
685
    if env.cms_pass:
686
      debug(env.host, "Aborting. Prerequisites not met.")
687
      return
688
    with settings(hide("everything")):
689
        try_run("ping -c1 accounts." + env.env.domain)
690
    setup_gunicorn()
691
    setup_apache()
692
    setup_webproject()
693
    install_package("snf-cloudcms")
694

    
695
    tmpl = "/etc/synnefo/cms.conf"
696
    replace = {
697
        "ACCOUNTS": env.env.accounts.fqdn,
698
        }
699
    custom = customize_settings_from_tmpl(tmpl, replace)
700
    put(custom, tmpl, mode=0644)
701
    try_run("/etc/init.d/gunicorn restart")
702

    
703

    
704
    cmd = """
705
    snf-manage syncdb
706
    snf-manage migrate --delete-ghost-migrations
707
    """.format(env.env.domain)
708
    try_run(cmd)
709

    
710

    
711
def setup_nfs_dirs():
712
    debug(env.host, " * Creating NFS mount point for pithos and ganeti...")
713
    cmd = """
714
    mkdir -p {0}
715
    cd {0}
716
    mkdir -p data
717
    chown www-data:www-data data
718
    chmod g+ws data
719
    mkdir -p /srv/okeanos
720
    """.format(env.env.pithos_dir)
721
    try_run(cmd)
722

    
723

    
724
@roles("nodes")
725
def setup_nfs_clients():
726
    if env.host == env.env.pithos.ip:
727
      return
728

    
729
    debug(env.host, " * Mounting pithos NFS mount point...")
730
    with settings(hide("everything")):
731
        try_run("ping -c1 " + env.env.pithos.hostname)
732
    install_package("nfs-common")
733
    for d in [env.env.pithos_dir, "/srv/okeanos"]:
734
      try_run("mkdir -p " + d)
735
      cmd = """
736
      echo "{0}:/{1} {2}  nfs4 defaults,rw,noatime,nodiratime,intr,rsize=1048576,wsize=1048576,noacl" >> /etc/fstab
737
      """.format(env.env.pithos.hostname, os.path.basename(d), d)
738
      try_run(cmd)
739
      try_run("mount " + d)
740

    
741

    
742
@roles("pithos")
743
def setup_nfs_server():
744
    debug(env.host, " * Setting up NFS server for pithos...")
745
    setup_nfs_dirs()
746
    install_package("nfs-kernel-server")
747
    tmpl = "/etc/exports"
748
    replace = {
749
      "pithos_dir": env.env.pithos_dir,
750
      "srv": os.path.dirname(env.env.pithos_dir),
751
      "subnet": env.env.subnet
752
      }
753
    custom = customize_settings_from_tmpl(tmpl, replace)
754
    put(custom, tmpl)
755
    try_run("/etc/init.d/nfs-kernel-server restart")
756

    
757

    
758
@roles("pithos")
759
def setup_pithos():
760
    debug(env.host, "Setting up snf-pithos-app...")
761
    with settings(hide("everything")):
762
        try_run("ping -c1 accounts." + env.env.domain)
763
        try_run("ping -c1 " + env.env.db.ip)
764
    setup_gunicorn()
765
    setup_apache()
766
    setup_webproject()
767

    
768
    with settings(host_string=env.env.accounts.ip):
769
        service_id, service_token = get_service_details("pithos")
770

    
771
    install_package("kamaki")
772
    install_package("snf-pithos-backend")
773
    install_package("snf-pithos-app")
774
    tmpl = "/etc/synnefo/pithos.conf"
775
    replace = {
776
        "ACCOUNTS": env.env.accounts.fqdn,
777
        "PITHOS": env.env.pithos.fqdn,
778
        "db_node": env.env.db.ip,
779
        "synnefo_user": env.env.synnefo_user,
780
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
781
        "pithos_dir": env.env.pithos_dir,
782
        "PITHOS_SERVICE_TOKEN": service_token,
783
        "proxy": env.env.pithos.hostname == env.env.accounts.hostname
784
        }
785
    custom = customize_settings_from_tmpl(tmpl, replace)
786
    put(custom, tmpl, mode=0644)
787
    try_run("/etc/init.d/gunicorn restart")
788

    
789
    install_package("snf-pithos-webclient")
790
    tmpl = "/etc/synnefo/webclient.conf"
791
    replace = {
792
        "ACCOUNTS": env.env.accounts.fqdn,
793
        "PITHOS_UI_CLOUDBAR_ACTIVE_SERVICE": service_id,
794
        }
795
    custom = customize_settings_from_tmpl(tmpl, replace)
796
    put(custom, tmpl, mode=0644)
797

    
798
    try_run("/etc/init.d/gunicorn restart")
799
    #TOFIX: the previous command lets pithos-backend create blocks and maps
800
    #       with root owner
801
    try_run("chown -R www-data:www-data %s/data " % env.env.pithos_dir)
802
    #try_run("pithos-migrate stamp 4c8ccdc58192")
803
    #try_run("pithos-migrate upgrade head")
804

    
805

    
806
def add_wheezy():
807
    tmpl = "/etc/apt/sources.list.d/wheezy.list"
808
    replace = {}
809
    custom = customize_settings_from_tmpl(tmpl, replace)
810
    put(custom, tmpl)
811
    apt_get_update()
812

    
813

    
814
def remove_wheezy():
815
    try_run("rm -f /etc/apt/sources.list.d/wheezy.list")
816
    apt_get_update()
817

    
818

    
819
@roles("ganeti")
820
def setup_ganeti():
821
    debug(env.host, "Setting up snf-ganeti...")
822
    node_info = env.env.ips_info[env.host]
823
    with settings(hide("everything")):
824
        #if env.enable_lvm:
825
        #    try_run("vgs " + env.env.vg)
826
        try_run("getent hosts " + env.env.cluster.fqdn)
827
        try_run("getent hosts %s | grep -v ^127" % env.host)
828
        try_run("hostname -f | grep " + node_info.fqdn)
829
        #try_run("ip link show " + env.env.common_bridge)
830
        #try_run("ip link show " + env.env.common_bridge)
831
        #try_run("apt-get update")
832
    install_package("qemu-kvm")
833
    install_package("python-bitarray")
834
    add_wheezy()
835
    install_package("ganeti-htools")
836
    remove_wheezy()
837
    install_package("snf-ganeti")
838
    try_run("mkdir -p /srv/ganeti/file-storage/")
839
    cmd = """
840
cat <<EOF > /etc/ganeti/file-storage-paths
841
/srv/ganeti/file-storage
842
/srv/ganeti/shared-file-storage
843
EOF
844
"""
845
    try_run(cmd)
846

    
847

    
848
@roles("master")
849
def add_rapi_user():
850
    debug(env.host, " * Adding RAPI user to Ganeti backend...")
851
    cmd = """
852
    echo -n "{0}:Ganeti Remote API:{1}" | openssl md5
853
    """.format(env.env.synnefo_user, env.env.synnefo_rapi_passwd)
854
    result = try_run(cmd)
855
    cmd = """
856
    echo "{0} {1}{2} write" >> /var/lib/ganeti/rapi/users
857
    """.format(env.env.synnefo_user, '{ha1}',result)
858
    try_run(cmd)
859
    try_run("/etc/init.d/ganeti restart")
860

    
861
@roles("master")
862
def add_nodes():
863
    nodes = env.env.cluster_nodes.split(",")
864
    nodes.remove(env.env.master_node)
865
    debug(env.host, " * Adding nodes to Ganeti backend...")
866
    for n in nodes:
867
        add_node(n)
868

    
869
@roles("master")
870
def add_node(node):
871
    node_info = env.env.nodes_info[node]
872
    debug(env.host, " * Adding node %s to Ganeti backend..." % node_info.fqdn)
873
    cmd = "gnt-node add --no-ssh-key-check --master-capable=yes --vm-capable=yes " + node_info.fqdn
874
    try_run(cmd)
875

    
876
@roles("ganeti")
877
def enable_drbd():
878
    if env.enable_drbd:
879
        debug(env.host, " * Enabling DRBD...")
880
        try_run("modprobe drbd minor_count=255 usermode_helper=/bin/true")
881
        try_run("echo drbd minor_count=255 usermode_helper=/bin/true >> /etc/modules")
882

    
883
@roles("master")
884
def setup_drbd_dparams():
885
    if env.enable_drbd:
886
        debug(env.host, " * Twicking drbd related disk parameters in Ganeti...")
887
        cmd = """
888
        gnt-cluster modify --disk-parameters=drbd:metavg={0}
889
        gnt-group modify --disk-parameters=drbd:metavg={0} default
890
        """.format(env.env.vg)
891
        try_run(cmd)
892

    
893
@roles("master")
894
def enable_lvm():
895
    if env.enable_lvm:
896
        debug(env.host, " * Enabling LVM...")
897
        cmd = """
898
        gnt-cluster modify --vg-name={0}
899
        """.format(env.env.vg)
900
        try_run(cmd)
901
    else:
902
        debug(env.host, " * Disabling LVM...")
903
        try_run("gnt-cluster modify --no-lvm-storage")
904

    
905
@roles("master")
906
def destroy_cluster():
907
    debug(env.host, " * Destroying Ganeti cluster...")
908
    #TODO: remove instances first
909
    allnodes = env.env.cluster_hostnames[:]
910
    allnodes.remove(env.host)
911
    for n in allnodes:
912
      host_info = env.env.ips_info[host]
913
      debug(env.host, " * Removing node %s..." % n)
914
      cmd = "gnt-node remove  " + host_info.fqdn
915
      try_run(cmd)
916
    try_run("gnt-cluster destroy --yes-do-it")
917

    
918

    
919
@roles("master")
920
def init_cluster():
921
    debug(env.host, " * Initializing Ganeti backend...")
922
    # extra = ""
923
    # if env.enable_lvm:
924
    #     extra += " --vg-name={0} ".format(env.env.vg)
925
    # else:
926
    #     extra += " --no-lvm-storage "
927
    # if not env.enable_drbd:
928
    #     extra += " --no-drbd-storage "
929
    extra = " --no-lvm-storage --no-drbd-storage "
930
    cmd = """
931
    gnt-cluster init --enabled-hypervisors=kvm \
932
                     {0} \
933
                     --nic-parameters link={1},mode=bridged \
934
                     --master-netdev {2} \
935
                     --default-iallocator hail \
936
                     --hypervisor-parameters kvm:kernel_path=,vnc_bind_address=0.0.0.0 \
937
                     --no-ssh-init --no-etc-hosts \
938
                    {3}
939

940
    """.format(extra, env.env.common_bridge,
941
               env.env.cluster_netdev, env.env.cluster.fqdn)
942
    try_run(cmd)
943

    
944

    
945
@roles("ganeti")
946
def debootstrap():
947
    install_package("ganeti-instance-debootstrap")
948

    
949

    
950
@roles("ganeti")
951
def setup_image_host():
952
    debug(env.host, "Setting up snf-image...")
953
    install_package("snf-pithos-backend")
954
    install_package("snf-image")
955
    try_run("mkdir -p /srv/okeanos")
956
    tmpl = "/etc/default/snf-image"
957
    replace = {
958
        "synnefo_user": env.env.synnefo_user,
959
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
960
        "pithos_dir": env.env.pithos_dir,
961
        "db_node": env.env.db.ip,
962
    }
963
    custom = customize_settings_from_tmpl(tmpl, replace)
964
    put(custom, tmpl)
965

    
966

    
967
@roles("ganeti")
968
def setup_image_helper():
969
    debug(env.host, " * Updating helper image...")
970
    cmd = """
971
    snf-image-update-helper -y
972
    """
973
    try_run(cmd)
974

    
975

    
976
@roles("ganeti")
977
def setup_gtools():
978
    debug(env.host, " * Setting up snf-cyclades-gtools...")
979
    with settings(hide("everything")):
980
        try_run("ping -c1 " + env.env.mq.ip)
981
    setup_common()
982
    install_package("snf-cyclades-gtools")
983
    tmpl = "/etc/synnefo/gtools.conf"
984
    replace = {
985
        "synnefo_user": env.env.synnefo_user,
986
        "synnefo_rabbitmq_passwd": env.env.synnefo_rabbitmq_passwd,
987
        "mq_node": env.env.mq.ip,
988
    }
989
    custom = customize_settings_from_tmpl(tmpl, replace)
990
    put(custom, tmpl)
991

    
992
    cmd = """
993
    sed -i 's/false/true/' /etc/default/snf-ganeti-eventd
994
    /etc/init.d/snf-ganeti-eventd start
995
    """
996
    try_run(cmd)
997

    
998

    
999
@roles("ganeti")
1000
def setup_iptables():
1001
    debug(env.host, " * Setting up iptables to mangle DHCP requests...")
1002
    cmd = """
1003
    iptables -t mangle -A PREROUTING -i br+ -p udp -m udp --dport 67 -j NFQUEUE --queue-num 42
1004
    iptables -t mangle -A PREROUTING -i tap+ -p udp -m udp --dport 67 -j NFQUEUE --queue-num 42
1005
    iptables -t mangle -A PREROUTING -i prv+ -p udp -m udp --dport 67 -j NFQUEUE --queue-num 42
1006

1007
    ip6tables -t mangle -A PREROUTING -i br+ -p ipv6-icmp -m icmp6 --icmpv6-type 133 -j NFQUEUE --queue-num 43
1008
    ip6tables -t mangle -A PREROUTING -i br+ -p ipv6-icmp -m icmp6 --icmpv6-type 135 -j NFQUEUE --queue-num 44
1009
    """
1010
    try_run(cmd)
1011

    
1012
@roles("ganeti")
1013
def setup_network():
1014
    debug(env.host, "Setting up networking for Ganeti instances (nfdhcpd, etc.)...")
1015
    install_package("nfqueue-bindings-python")
1016
    install_package("nfdhcpd")
1017
    tmpl = "/etc/nfdhcpd/nfdhcpd.conf"
1018
    replace = {
1019
      "ns_node_ip": env.env.ns.ip
1020
      }
1021
    custom = customize_settings_from_tmpl(tmpl, replace)
1022
    put(custom, tmpl)
1023
    try_run("/etc/init.d/nfdhcpd restart")
1024

    
1025
    install_package("snf-network")
1026
    cmd = """
1027
    sed -i 's/MAC_MASK.*/MAC_MASK = ff:ff:f0:00:00:00/' /etc/default/snf-network
1028
    """
1029
    try_run(cmd)
1030

    
1031

    
1032
@roles("router")
1033
def setup_router():
1034
    debug(env.host, " * Setting up internal router for NAT...")
1035
    cmd = """
1036
    echo 1 > /proc/sys/net/ipv4/ip_forward
1037
    iptables -t nat -A POSTROUTING -s {0} -o {3} -j MASQUERADE
1038
    ip addr add {1} dev {2}
1039
    ip route add {0} dev {2} src {1}
1040
    """.format(env.env.synnefo_public_network_subnet,
1041
               env.env.synnefo_public_network_gateway,
1042
               env.env.common_bridge, env.env.public_iface)
1043
    try_run(cmd)
1044

    
1045
@roles("cyclades")
1046
def cyclades_loaddata():
1047
    debug(env.host, " * Loading initial data for cyclades...")
1048
    tmpl = "/tmp/flavor.json"
1049
    replace = {}
1050
    custom = customize_settings_from_tmpl(tmpl, replace)
1051
    put(custom, tmpl)
1052
    try_run("snf-manage loaddata " + tmpl)
1053
    #run("snf-manage loaddata flavors")
1054

    
1055

    
1056
@roles("cyclades")
1057
def setup_cyclades():
1058
    debug(env.host, "Setting up snf-cyclades-app...")
1059
    with settings(hide("everything")):
1060
        try_run("ping -c1 accounts." + env.env.domain)
1061
        try_run("ping -c1 " + env.env.db.ip)
1062
        try_run("ping -c1 " + env.env.mq.ip)
1063
    setup_gunicorn()
1064
    setup_apache()
1065
    setup_webproject()
1066
    install_package("memcached")
1067
    install_package("python-memcache")
1068
    install_package("snf-pithos-backend")
1069
    install_package("kamaki")
1070
    install_package("snf-cyclades-app")
1071
    install_package("python-django-south")
1072
    tmpl = "/etc/synnefo/cyclades.conf"
1073

    
1074
    with settings(host_string=env.env.accounts.ip):
1075
        service_id, service_token = get_service_details("cyclades")
1076

    
1077
    replace = {
1078
        "ACCOUNTS": env.env.accounts.fqdn,
1079
        "CYCLADES": env.env.cyclades.fqdn,
1080
        "mq_node": env.env.mq.ip,
1081
        "db_node": env.env.db.ip,
1082
        "synnefo_user": env.env.synnefo_user,
1083
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
1084
        "synnefo_rabbitmq_passwd": env.env.synnefo_rabbitmq_passwd,
1085
        "pithos_dir": env.env.pithos_dir,
1086
        "common_bridge": env.env.common_bridge,
1087
        "HOST": env.env.cyclades.ip,
1088
        "domain": env.env.domain,
1089
        "CYCLADES_SERVICE_TOKEN": service_token,
1090
        "proxy": env.env.cyclades.hostname == env.env.accounts.hostname
1091
        }
1092
    custom = customize_settings_from_tmpl(tmpl, replace)
1093
    put(custom, tmpl, mode=0644)
1094
    try_run("/etc/init.d/gunicorn restart")
1095

    
1096
    cmd = """
1097
    sed -i 's/false/true/' /etc/default/snf-dispatcher
1098
    /etc/init.d/snf-dispatcher start
1099
    """
1100
    try_run(cmd)
1101

    
1102
    try_run("snf-manage syncdb")
1103
    try_run("snf-manage migrate --delete-ghost-migrations")
1104

    
1105

    
1106
@roles("cyclades")
1107
def get_backend_id(cluster_name="ganeti1.synnefo.deploy.local"):
1108
    backend_id = try_run("snf-manage backend-list 2>/dev/null | grep %s | awk '{print $1}'" % cluster_name)
1109
    return backend_id
1110

    
1111

    
1112
@roles("cyclades")
1113
def add_backend():
1114
    debug(env.host, "adding %s ganeti backend to cyclades..." % env.env.cluster.fqdn)
1115
    with settings(hide("everything")):
1116
        try_run("ping -c1 " + env.env.cluster.fqdn)
1117
    cmd = """
1118
    snf-manage backend-add --clustername={0} --user={1} --pass={2}
1119
    """.format(env.env.cluster.fqdn, env.env.synnefo_user,
1120
               env.env.synnefo_rapi_passwd)
1121
    try_run(cmd)
1122
    backend_id = get_backend_id(env.env.cluster.fqdn)
1123
    try_run("snf-manage backend-modify --drained=False " + backend_id)
1124

    
1125
@roles("cyclades")
1126
def pin_user_to_backend(user_email):
1127
    backend_id = get_backend_id(env.env.cluster.fqdn)
1128
    # pin user to backend
1129
    cmd = """
1130
cat <<EOF >> /etc/synnefo/cyclades.conf
1131

1132
BACKEND_PER_USER = {
1133
  '%s': %s,
1134
}
1135

1136
EOF
1137
/etc/init.d/gunicorn restart
1138
    """  % (user_email, backend_id)
1139
    try_run(cmd)
1140

    
1141
@roles("cyclades")
1142
def add_pools():
1143
    debug(env.host, " * Creating pools of resources (brigdes, mac prefixes) in cyclades...")
1144
    try_run("snf-manage pool-create --type=mac-prefix --base=aa:00:0 --size=65536")
1145
    try_run("snf-manage pool-create --type=bridge --base=prv --size=20")
1146

    
1147

    
1148
@roles("cyclades")
1149
def add_network():
1150
    debug(env.host, " * Adding public network in cyclades...")
1151
    backend_id = get_backend_id(env.env.cluster.fqdn)
1152
    cmd = """
1153
    snf-manage network-create --subnet={0} --gateway={1} --public --dhcp=True --flavor={2} --mode=bridged --link={3} --name=Internet --backend-id={4}
1154
    """.format(env.env.synnefo_public_network_subnet,
1155
               env.env.synnefo_public_network_gateway,
1156
               env.env.synnefo_public_network_type,
1157
               env.env.common_bridge, backend_id)
1158
    try_run(cmd)
1159

    
1160

    
1161
@roles("cyclades")
1162
def setup_vncauthproxy():
1163
    debug(env.host, " * Setting up vncauthproxy...")
1164
    install_package("snf-vncauthproxy")
1165
    cmd = """
1166
    echo CHUID="www-data:nogroup" >> /etc/default/vncauthproxy
1167
    rm /var/log/vncauthproxy/vncauthproxy.log
1168
    """
1169
    try_run(cmd)
1170
    try_run("/etc/init.d/vncauthproxy restart")
1171

    
1172
@roles("client")
1173
def setup_kamaki():
1174
    debug(env.host, "Setting up kamaki client...")
1175
    with settings(hide("everything")):
1176
        try_run("ping -c1 accounts." + env.env.domain)
1177
        try_run("ping -c1 cyclades." + env.env.domain)
1178
        try_run("ping -c1 pithos." + env.env.domain)
1179

    
1180
    with settings(host_string=env.env.db.ip):
1181
        uid, user_auth_token, user_uuid = get_auth_token_from_db(env.env.user_email)
1182

    
1183
    install_package("python-progress")
1184
    install_package("kamaki")
1185
    cmd = """
1186
    kamaki config set cloud.default.url "https://{0}/astakos/identity/v2.0/"
1187
    kamaki config set cloud.default.token {1}
1188
    """.format(env.env.accounts.fqdn, user_auth_token)
1189
    try_run(cmd)
1190
    try_run("kamaki file create images")
1191

    
1192
@roles("client")
1193
def upload_image(image="debian_base.diskdump"):
1194
    debug(env.host, " * Uploading initial image to pithos...")
1195
    image = "debian_base.diskdump"
1196
    try_run("wget {0} -O /tmp/{1}".format(env.env.debian_base_url, image))
1197
    try_run("kamaki file upload --container images /tmp/{0} {0}".format(image))
1198

    
1199
@roles("client")
1200
def register_image(image="debian_base.diskdump"):
1201
    debug(env.host, " * Register image to plankton...")
1202
    with settings(host_string=env.env.db.ip):
1203
        uid, user_auth_token, user_uuid = get_auth_token_from_db(env.env.user_email)
1204

    
1205
    pithos_url = "pithos://{0}/images/{1}".format(user_uuid, image)
1206
    cmd = """
1207
    sleep 5
1208
    kamaki image register "Debian Base" {0} --public --disk-format=diskdump --property OSFAMILY=linux --property ROOT_PARTITION=1 --property description="Debian Squeeze Base System" --property size=450M --property kernel=2.6.32 --property GUI="No GUI" --property sortorder=1 --property USERS=root --property OS=debian
1209
    """.format(pithos_url)
1210
    try_run(cmd)
1211

    
1212
@roles("client")
1213
def setup_burnin():
1214
    debug(env.host, "Setting up burnin testing tool...")
1215
    install_package("kamaki")
1216
    install_package("snf-tools")
1217

    
1218
@roles("pithos")
1219
def add_image_locally():
1220
    debug(env.host, " * Getting image locally in order snf-image to use it directly..")
1221
    image = "debian_base.diskdump"
1222
    try_run("wget {0} -O /srv/okeanos/{1}".format(env.env.debian_base_url, image))
1223

    
1224

    
1225
@roles("master")
1226
def gnt_instance_add(name="test"):
1227
    debug(env.host, " * Adding test instance to Ganeti...")
1228
    osp="""img_passwd=gamwtosecurity,img_format=diskdump,img_id=debian_base,img_properties='{"OSFAMILY":"linux"\,"ROOT_PARTITION":"1"}'"""
1229
    cmd = """
1230
    gnt-instance add  -o snf-image+default --os-parameters {0} -t plain --disk 0:size=1G --no-name-check --no-ip-check --net 0:ip=pool,network=test --no-install --hypervisor-parameters kvm:machine_version=pc-1.0 {1}
1231
    """.format(osp, name)
1232
    try_run(cmd)
1233

    
1234
@roles("master")
1235
def gnt_network_add(name="test", subnet="10.0.0.0/26", gw="10.0.0.1", mode="bridged", link="br0"):
1236
    debug(env.host, " * Adding test network to Ganeti...")
1237
    cmd = """
1238
    gnt-network add --network={1} --gateway={2} {0}
1239
    gnt-network connect {0} {3} {4}
1240
    """.format(name, subnet, gw, mode, link)
1241
    try_run(cmd)
1242

    
1243
@roles("ips")
1244
def test():
1245
    debug(env.host, "Testing...")
1246
    try_run("hostname && date")