Statistics
| Branch: | Tag: | Revision:

root / snf-deploy / fabfile.py @ 2a2c6c0a

History | View | Annotate | Download (39.5 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
    host_info = env.env.ips_info[env.host]
80
    env.env.update_packages(host_info.os)
81
    if ast.literal_eval(env.env.use_local_packages):
82
        with settings(warn_only=True):
83
            deb = local("ls %s/%s*%s_all.deb" % (env.env.packages, package, host_info.os),
84
                        capture=True)
85
            if deb:
86
                debug(env.host, " * Package %s found in %s..." % (package, env.env.packages))
87
                put(deb, "/tmp/")
88
                try_run("dpkg -i /tmp/%s || " % os.path.basename(deb) + APT_GET + "-f")
89
                try_run("rm /tmp/%s" % os.path.basename(deb))
90
                return
91

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

    
100
    try_run(APT_GET)
101

    
102
    return
103

    
104

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

    
112

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

    
120

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

    
129

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

    
138

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

    
147
@roles("nodes")
148
def apt_get_update():
149
    debug(env.host, "apt-get update....")
150
    try_run("apt-get update")
151

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

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

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

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

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

    
200
    try_run("/etc/init.d/bind9 restart")
201

    
202

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

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

    
215
    for n, info in env.env.roles.iteritems():
216
        try_run("ping -c 1 " + info.fqdn, True)
217

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

    
223

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

    
230

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

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

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

    
282

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

    
295

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

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

    
315

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

    
323

    
324
@roles("ganeti")
325
def setup_net_infra():
326
    debug(env.host, "Setup networking infrastracture..")
327
    create_bridges()
328
    connect_bridges()
329

    
330

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

    
342

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

    
352
    return custom
353

    
354

    
355
@roles("nodes")
356
def setup_apt():
357
    debug(env.host, "Setting up apt sources...")
358
    install_package("curl")
359
    cmd = """
360
    echo 'APT::Install-Suggests "false";' >> /etc/apt/apt.conf
361
    curl -k https://dev.grnet.gr/files/apt-grnetdev.pub | apt-key add -
362
    """
363
    try_run(cmd)
364
    host_info = env.env.ips_info[env.host]
365
    if host_info.os == "squeeze":
366
      tmpl = "/etc/apt/sources.list.d/synnefo.squeeze.list"
367
    else:
368
      tmpl = "/etc/apt/sources.list.d/synnefo.wheezy.list"
369
    replace = {}
370
    custom = customize_settings_from_tmpl(tmpl, replace)
371
    put(custom, tmpl)
372
    apt_get_update()
373

    
374

    
375
@roles("cyclades", "cms", "pithos", "accounts")
376
def restart_services():
377
    debug(env.host, " * Restarting apache2 and gunicorn...")
378
    try_run("/etc/init.d/gunicorn restart")
379
    try_run("/etc/init.d/apache2 restart")
380

    
381

    
382
def setup_gunicorn():
383
    debug(env.host, " * Setting up gunicorn...")
384
    install_package("gunicorn")
385
    tmpl = "/etc/gunicorn.d/synnefo"
386
    replace = {}
387
    custom = customize_settings_from_tmpl(tmpl, replace)
388
    put(custom, tmpl, mode=0644)
389
    try_run("/etc/init.d/gunicorn restart")
390

    
391

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

    
418

    
419
@roles("mq")
420
def setup_mq():
421
    debug(env.host, "Setting up RabbitMQ...")
422
    install_package("rabbitmq-server")
423
    cmd = """
424
    rabbitmqctl add_user {0} {1}
425
    rabbitmqctl set_permissions {0} ".*" ".*" ".*"
426
    rabbitmqctl delete_user guest
427
    rabbitmqctl set_user_tags {0} administrator
428
    """.format(env.env.synnefo_user, env.env.synnefo_rabbitmq_passwd)
429
    try_run(cmd)
430
    try_run("/etc/init.d/rabbitmq-server restart")
431

    
432

    
433
@roles("db")
434
def allow_access_in_db(ip, user="all", method="md5"):
435
    cmd = """
436
    pg_hba=$(ls /etc/postgresql/*/main/pg_hba.conf)
437
    echo host all {0} {1}/32 {2} >> $pg_hba
438
    """.format(user, ip, method)
439
    try_run(cmd)
440
    cmd = """
441
    pg_hba=$(ls /etc/postgresql/*/main/pg_hba.conf)
442
    sed -i 's/\(host.*127.0.0.1.*\)md5/\\1trust/' $pg_hba
443
    """
444
    try_run(cmd)
445
    try_run("/etc/init.d/postgresql restart")
446

    
447
@roles("db")
448
def setup_db():
449
    debug(env.host, "Setting up DataBase server...")
450
    install_package("postgresql")
451

    
452
    tmpl = "/tmp/db-init.psql"
453
    replace = {
454
        "synnefo_user": env.env.synnefo_user,
455
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
456
        }
457
    custom = customize_settings_from_tmpl(tmpl, replace)
458
    put(custom, tmpl)
459
    cmd = 'su - postgres -c "psql -w -f %s" ' % tmpl
460
    try_run(cmd)
461
    cmd = """
462
    conf=$(ls /etc/postgresql/*/main/postgresql.conf)
463
    echo "listen_addresses = '*'" >> $conf
464
    """
465
    try_run(cmd)
466

    
467
    if env.env.testing_vm:
468
        cmd = """
469
        conf=$(ls /etc/postgresql/*/main/postgresql.conf)
470
        echo "fsync=off\nsynchronous_commit=off\nfull_page_writes=off" >> $conf
471
        """
472
        try_run(cmd)
473

    
474
    allow_access_in_db(env.host, "all", "trust")
475
    try_run("/etc/init.d/postgresql restart")
476

    
477

    
478
@roles("db")
479
def destroy_db():
480
    try_run("""su - postgres -c ' psql -w -c "drop database snf_apps" '""")
481
    try_run("""su - postgres -c ' psql -w -c "drop database snf_pithos" '""")
482

    
483

    
484
def setup_webproject():
485
    debug(env.host, " * Setting up snf-webproject...")
486
    with settings(hide("everything")):
487
        try_run("ping -c1 " + env.env.db.ip)
488
    setup_common()
489
    install_package("snf-webproject")
490
    install_package("python-psycopg2")
491
    install_package("python-gevent")
492
    tmpl = "/etc/synnefo/webproject.conf"
493
    replace = {
494
        "synnefo_user": env.env.synnefo_user,
495
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
496
        "db_node": env.env.db.ip,
497
        "domain": env.env.domain,
498
    }
499
    custom = customize_settings_from_tmpl(tmpl, replace)
500
    put(custom, tmpl, mode=0644)
501
    with settings(host_string=env.env.db.ip):
502
        host_info = env.env.ips_info[env.host]
503
        allow_access_in_db(host_info.ip, "all", "trust")
504
    try_run("/etc/init.d/gunicorn restart")
505

    
506

    
507
def setup_common():
508
    debug(env.host, " * Setting up snf-common...")
509
    host_info = env.env.ips_info[env.host]
510
    install_package("python-objpool")
511
    install_package("snf-common")
512
    install_package("python-astakosclient")
513
    install_package("snf-django-lib")
514
    install_package("snf-branding")
515
    tmpl = "/etc/synnefo/common.conf"
516
    replace = {
517
        #FIXME:
518
        "EMAIL_SUBJECT_PREFIX": env.host,
519
        "domain": env.env.domain,
520
        "HOST": host_info.fqdn,
521
        "MAIL_DIR": env.env.mail_dir,
522
    }
523
    custom = customize_settings_from_tmpl(tmpl, replace)
524
    put(custom, tmpl, mode=0644)
525
    try_run("mkdir -p {0}; chown root:www-data {0}; chmod 775 {0}".format(env.env.mail_dir))
526
    try_run("/etc/init.d/gunicorn restart")
527

    
528
@roles("accounts")
529
def astakos_loaddata():
530
    debug(env.host, " * Loading initial data to astakos...")
531
    cmd = """
532
    snf-manage loaddata groups
533
    """
534
    try_run(cmd)
535

    
536

    
537
@roles("accounts")
538
def astakos_register_components():
539
    debug(env.host, " * Register services in astakos...")
540

    
541
    cyclades_base_url = "https://%s/cyclades/" % env.env.cyclades.fqdn
542
    pithos_base_url = "https://%s/pithos/" % env.env.pithos.fqdn
543
    astakos_base_url = "https://%s/astakos/" % env.env.accounts.fqdn
544

    
545
    cmd = """
546
    snf-manage component-add "home" https://{0} home-icon.png
547
    snf-manage component-add "cyclades" {1}ui/
548
    snf-manage component-add "pithos" {2}ui/
549
    snf-manage component-add "astakos" {3}ui/
550
    """.format(env.env.cms.fqdn, cyclades_base_url,
551
               pithos_base_url, astakos_base_url)
552
    try_run(cmd)
553

    
554

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

    
573

    
574
@roles("accounts")
575
def activate_user(user_email=None):
576
    if not user_email:
577
      user_email = env.env.user_email
578
    debug(env.host, " * Activate user %s..." % user_email)
579
    with settings(host_string=env.env.db.ip):
580
        uid, user_auth_token, user_uuid = get_auth_token_from_db(user_email)
581

    
582
    cmd = """
583
    snf-manage user-modify --verify {0}
584
    snf-manage user-modify --accept {0}
585
    """.format(uid)
586
    try_run(cmd)
587

    
588
@roles("accounts")
589
def setup_astakos():
590
    debug(env.host, "Setting up snf-astakos-app...")
591
    setup_gunicorn()
592
    setup_apache()
593
    setup_webproject()
594
    install_package("python-django-south")
595
    install_package("snf-astakos-app")
596
    install_package("kamaki")
597

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

    
618
    try_run("/etc/init.d/gunicorn restart")
619

    
620
    cmd = """
621
    snf-manage syncdb --noinput
622
    snf-manage migrate im --delete-ghost-migrations
623
    snf-manage migrate quotaholder_app
624
    """
625
    try_run(cmd)
626

    
627

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

    
637

    
638
@roles("db")
639
def get_auth_token_from_db(user_email=None):
640
    if not user_email:
641
        user_email=env.env.user_email
642
    debug(env.host, " * Getting authentication token and uuid for user %s..." % user_email)
643
    cmd = """
644
    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
645
    su - postgres -c  "psql -w -d snf_apps -f /tmp/psqlcmd"
646
    """.format(user_email)
647

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

    
654
    return (uid, user_auth_token, user_uuid)
655

    
656

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

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

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

    
680

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

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

    
702

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

    
709

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

    
722

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

    
728
    host_info = env.env.ips_info[env.host]
729
    debug(env.host, " * Mounting pithos NFS mount point...")
730
    with settings(hide("everything")):
731
        try_run("ping -c1 " + env.env.pithos.hostname)
732
    with settings(host_string=env.env.pithos.ip):
733
        update_nfs_exports(host_info.ip)
734

    
735
    install_package("nfs-common")
736
    for d in [env.env.pithos_dir, env.env.image_dir]:
737
      try_run("mkdir -p " + d)
738
      cmd = """
739
      echo "{0}:{1} {1}  nfs defaults,rw,noatime,rsize=131072,wsize=131072,timeo=14,intr,noacl" >> /etc/fstab
740
      """.format(env.env.pithos.ip, d)
741
      try_run(cmd)
742
      try_run("mount " + d)
743

    
744
@roles("pithos")
745
def update_nfs_exports(ip):
746
    tmpl = "/tmp/exports"
747
    replace = {
748
      "pithos_dir": env.env.pithos_dir,
749
      "image_dir": env.env.image_dir,
750
      "ip": ip,
751
      }
752
    custom = customize_settings_from_tmpl(tmpl, replace)
753
    put(custom, tmpl)
754
    try_run("cat %s >> /etc/exports" % tmpl)
755
    try_run("/etc/init.d/nfs-kernel-server restart")
756

    
757
@roles("pithos")
758
def setup_nfs_server():
759
    debug(env.host, " * Setting up NFS server for pithos...")
760
    setup_nfs_dirs()
761
    install_package("nfs-kernel-server")
762

    
763

    
764
@roles("pithos")
765
def setup_pithos():
766
    debug(env.host, "Setting up snf-pithos-app...")
767
    with settings(hide("everything")):
768
        try_run("ping -c1 accounts." + env.env.domain)
769
        try_run("ping -c1 " + env.env.db.ip)
770
    setup_gunicorn()
771
    setup_apache()
772
    setup_webproject()
773

    
774
    with settings(host_string=env.env.accounts.ip):
775
        service_id, service_token = get_service_details("pithos")
776

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

    
795
    install_package("snf-pithos-webclient")
796
    tmpl = "/etc/synnefo/webclient.conf"
797
    replace = {
798
        "ACCOUNTS": env.env.accounts.fqdn,
799
        "PITHOS_UI_CLOUDBAR_ACTIVE_SERVICE": service_id,
800
        }
801
    custom = customize_settings_from_tmpl(tmpl, replace)
802
    put(custom, tmpl, mode=0644)
803

    
804
    try_run("/etc/init.d/gunicorn restart")
805
    #TOFIX: the previous command lets pithos-backend create blocks and maps
806
    #       with root owner
807
    try_run("chown -R www-data:www-data %s/data " % env.env.pithos_dir)
808
    #try_run("pithos-migrate stamp 4c8ccdc58192")
809
    #try_run("pithos-migrate upgrade head")
810

    
811

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

    
838

    
839
@roles("master")
840
def add_rapi_user():
841
    debug(env.host, " * Adding RAPI user to Ganeti backend...")
842
    cmd = """
843
    echo -n "{0}:Ganeti Remote API:{1}" | openssl md5
844
    """.format(env.env.synnefo_user, env.env.synnefo_rapi_passwd)
845
    result = try_run(cmd)
846
    if result.startswith("(stdin)= "):
847
        result = result.split("(stdin)= ")[1]
848
    cmd = """
849
    echo "{0} {1}{2} write" >> /var/lib/ganeti/rapi/users
850
    """.format(env.env.synnefo_user, '{ha1}',result)
851
    try_run(cmd)
852
    try_run("/etc/init.d/ganeti restart")
853

    
854
@roles("master")
855
def add_nodes():
856
    nodes = env.env.cluster_nodes.split(",")
857
    nodes.remove(env.env.master_node)
858
    debug(env.host, " * Adding nodes to Ganeti backend...")
859
    for n in nodes:
860
        add_node(n)
861

    
862
@roles("master")
863
def add_node(node):
864
    node_info = env.env.nodes_info[node]
865
    debug(env.host, " * Adding node %s to Ganeti backend..." % node_info.fqdn)
866
    cmd = "gnt-node add --no-ssh-key-check --master-capable=yes --vm-capable=yes " + node_info.fqdn
867
    try_run(cmd)
868

    
869
@roles("ganeti")
870
def enable_drbd():
871
    if env.enable_drbd:
872
        debug(env.host, " * Enabling DRBD...")
873
        try_run("modprobe drbd minor_count=255 usermode_helper=/bin/true")
874
        try_run("echo drbd minor_count=255 usermode_helper=/bin/true >> /etc/modules")
875

    
876
@roles("master")
877
def setup_drbd_dparams():
878
    if env.enable_drbd:
879
        debug(env.host, " * Twicking drbd related disk parameters in Ganeti...")
880
        cmd = """
881
        gnt-cluster modify --disk-parameters=drbd:metavg={0}
882
        gnt-group modify --disk-parameters=drbd:metavg={0} default
883
        """.format(env.env.vg)
884
        try_run(cmd)
885

    
886
@roles("master")
887
def enable_lvm():
888
    if env.enable_lvm:
889
        debug(env.host, " * Enabling LVM...")
890
        cmd = """
891
        gnt-cluster modify --vg-name={0}
892
        """.format(env.env.vg)
893
        try_run(cmd)
894
    else:
895
        debug(env.host, " * Disabling LVM...")
896
        try_run("gnt-cluster modify --no-lvm-storage")
897

    
898
@roles("master")
899
def destroy_cluster():
900
    debug(env.host, " * Destroying Ganeti cluster...")
901
    #TODO: remove instances first
902
    allnodes = env.env.cluster_hostnames[:]
903
    allnodes.remove(env.host)
904
    for n in allnodes:
905
      host_info = env.env.ips_info[host]
906
      debug(env.host, " * Removing node %s..." % n)
907
      cmd = "gnt-node remove  " + host_info.fqdn
908
      try_run(cmd)
909
    try_run("gnt-cluster destroy --yes-do-it")
910

    
911

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

933
    """.format(extra, env.env.common_bridge,
934
               env.env.cluster_netdev, env.env.cluster.fqdn)
935
    try_run(cmd)
936

    
937

    
938
@roles("ganeti")
939
def debootstrap():
940
    install_package("ganeti-instance-debootstrap")
941

    
942

    
943
@roles("ganeti")
944
def setup_image_host():
945
    debug(env.host, "Setting up snf-image...")
946
    install_package("snf-pithos-backend")
947
    install_package("snf-image")
948
    try_run("mkdir -p %s" % env.env.image_dir)
949
    tmpl = "/etc/default/snf-image"
950
    replace = {
951
        "synnefo_user": env.env.synnefo_user,
952
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
953
        "pithos_dir": env.env.pithos_dir,
954
        "db_node": env.env.db.ip,
955
    }
956
    custom = customize_settings_from_tmpl(tmpl, replace)
957
    put(custom, tmpl)
958

    
959

    
960
@roles("ganeti")
961
def setup_image_helper():
962
    debug(env.host, " * Updating helper image...")
963
    cmd = """
964
    snf-image-update-helper -y
965
    """
966
    try_run(cmd)
967

    
968

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

    
985
    cmd = """
986
    sed -i 's/false/true/' /etc/default/snf-ganeti-eventd
987
    /etc/init.d/snf-ganeti-eventd start
988
    """
989
    try_run(cmd)
990

    
991

    
992
@roles("ganeti")
993
def setup_iptables():
994
    debug(env.host, " * Setting up iptables to mangle DHCP requests...")
995
    cmd = """
996
    iptables -t mangle -A PREROUTING -i br+ -p udp -m udp --dport 67 -j NFQUEUE --queue-num 42
997
    iptables -t mangle -A PREROUTING -i tap+ -p udp -m udp --dport 67 -j NFQUEUE --queue-num 42
998
    iptables -t mangle -A PREROUTING -i prv+ -p udp -m udp --dport 67 -j NFQUEUE --queue-num 42
999

1000
    ip6tables -t mangle -A PREROUTING -i br+ -p ipv6-icmp -m icmp6 --icmpv6-type 133 -j NFQUEUE --queue-num 43
1001
    ip6tables -t mangle -A PREROUTING -i br+ -p ipv6-icmp -m icmp6 --icmpv6-type 135 -j NFQUEUE --queue-num 44
1002
    """
1003
    try_run(cmd)
1004

    
1005
@roles("ganeti")
1006
def setup_network():
1007
    debug(env.host, "Setting up networking for Ganeti instances (nfdhcpd, etc.)...")
1008
    install_package("nfqueue-bindings-python")
1009
    install_package("nfdhcpd")
1010
    tmpl = "/etc/nfdhcpd/nfdhcpd.conf"
1011
    replace = {
1012
      "ns_node_ip": env.env.ns.ip
1013
      }
1014
    custom = customize_settings_from_tmpl(tmpl, replace)
1015
    put(custom, tmpl)
1016
    try_run("/etc/init.d/nfdhcpd restart")
1017

    
1018
    install_package("snf-network")
1019
    cmd = """
1020
    sed -i 's/MAC_MASK.*/MAC_MASK = ff:ff:f0:00:00:00/' /etc/default/snf-network
1021
    """
1022
    try_run(cmd)
1023

    
1024

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

    
1038

    
1039
@roles("cyclades")
1040
def cyclades_loaddata():
1041
    debug(env.host, " * Loading initial data for cyclades...")
1042
    try_run("snf-manage flavor-create %s %s %s %s" % (env.env.flavor_cpu,
1043
                                                      env.env.flavor_ram,
1044
                                                      env.env.flavor_disk,
1045
                                                      env.env.flavor_storage))
1046
    #run("snf-manage loaddata flavors")
1047

    
1048

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

    
1067
    with settings(host_string=env.env.accounts.ip):
1068
        service_id, service_token = get_service_details("cyclades")
1069

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

    
1089
    cmd = """
1090
    sed -i 's/false/true/' /etc/default/snf-dispatcher
1091
    /etc/init.d/snf-dispatcher start
1092
    """
1093
    try_run(cmd)
1094

    
1095
    try_run("snf-manage syncdb")
1096
    try_run("snf-manage migrate --delete-ghost-migrations")
1097

    
1098

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

    
1104

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

    
1118
@roles("cyclades")
1119
def pin_user_to_backend(user_email):
1120
    backend_id = get_backend_id(env.env.cluster.fqdn)
1121
    # pin user to backend
1122
    cmd = """
1123
cat <<EOF >> /etc/synnefo/cyclades.conf
1124

1125
BACKEND_PER_USER = {
1126
  '%s': %s,
1127
}
1128

1129
EOF
1130
/etc/init.d/gunicorn restart
1131
    """  % (user_email, backend_id)
1132
    try_run(cmd)
1133

    
1134
@roles("cyclades")
1135
def add_pools():
1136
    debug(env.host, " * Creating pools of resources (brigdes, mac prefixes) in cyclades...")
1137
    try_run("snf-manage pool-create --type=mac-prefix --base=aa:00:0 --size=65536")
1138
    try_run("snf-manage pool-create --type=bridge --base=prv --size=20")
1139

    
1140

    
1141
@roles("accounts", "cyclades", "pithos")
1142
def export_services():
1143
    debug(env.host, " * Exporting services...")
1144
    host = env.host
1145
    services = []
1146
    if host == env.env.cyclades.ip:
1147
        services.append("cyclades")
1148
    if host == env.env.pithos.ip:
1149
        services.append("pithos")
1150
    if host == env.env.accounts.ip:
1151
        services.append("astakos")
1152
    for service in services:
1153
        filename = "%s_services.json" % service
1154
        cmd = "snf-manage service-export-%s > %s" % (service, filename)
1155
        run(cmd)
1156
        get(filename, filename+".local")
1157

    
1158

    
1159
@roles("accounts")
1160
def import_services():
1161
    debug(env.host, " * Registering services to astakos...")
1162
    for service in ["cyclades", "pithos", "astakos"]:
1163
        filename = "%s_services.json" % service
1164
        put(filename +".local", filename)
1165
        cmd = "snf-manage service-import --json=%s" % filename
1166
        run(cmd)
1167

    
1168
    debug(env.host, " * Setting default quota...")
1169
    cmd = """
1170
    snf-manage resource-modify --limit 40G pithos.diskspace
1171
    snf-manage resource-modify --limit 2 astakos.pending_app
1172
    snf-manage resource-modify --limit 4 cyclades.vm
1173
    snf-manage resource-modify --limit 40G cyclades.disk
1174
    snf-manage resource-modify --limit 16G cyclades.ram
1175
    snf-manage resource-modify --limit 8G cyclades.active_ram
1176
    snf-manage resource-modify --limit 32 cyclades.cpu
1177
    snf-manage resource-modify --limit 16 cyclades.active_cpu
1178
    snf-manage resource-modify --limit 4 cyclades.network.private
1179
    """
1180
    try_run(cmd)
1181

    
1182

    
1183
@roles("cyclades")
1184
def add_network():
1185
    debug(env.host, " * Adding public network in cyclades...")
1186
    backend_id = get_backend_id(env.env.cluster.fqdn)
1187
    cmd = """
1188
    snf-manage network-create --subnet={0} --gateway={1} --public --dhcp --flavor={2} --mode=bridged --link={3} --name=Internet --backend-id={4}
1189
    """.format(env.env.synnefo_public_network_subnet,
1190
               env.env.synnefo_public_network_gateway,
1191
               env.env.synnefo_public_network_type,
1192
               env.env.common_bridge, backend_id)
1193
    try_run(cmd)
1194

    
1195

    
1196
@roles("cyclades")
1197
def setup_vncauthproxy():
1198
    debug(env.host, " * Setting up vncauthproxy...")
1199
    install_package("snf-vncauthproxy")
1200
    cmd = """
1201
    echo CHUID="www-data:nogroup" >> /etc/default/vncauthproxy
1202
    rm /var/log/vncauthproxy/vncauthproxy.log
1203
    """
1204
    try_run(cmd)
1205
    try_run("/etc/init.d/vncauthproxy restart")
1206

    
1207
@roles("client")
1208
def setup_kamaki():
1209
    debug(env.host, "Setting up kamaki client...")
1210
    with settings(hide("everything")):
1211
        try_run("ping -c1 accounts." + env.env.domain)
1212
        try_run("ping -c1 cyclades." + env.env.domain)
1213
        try_run("ping -c1 pithos." + env.env.domain)
1214

    
1215
    with settings(host_string=env.env.db.ip):
1216
        uid, user_auth_token, user_uuid = get_auth_token_from_db(env.env.user_email)
1217

    
1218
    install_package("python-progress")
1219
    install_package("kamaki")
1220
    cmd = """
1221
    kamaki config set cloud.default.url "https://{0}/astakos/identity/v2.0/"
1222
    kamaki config set cloud.default.token {1}
1223
    """.format(env.env.accounts.fqdn, user_auth_token)
1224
    try_run(cmd)
1225
    try_run("kamaki file create images")
1226

    
1227
@roles("client")
1228
def upload_image(image="debian_base.diskdump"):
1229
    debug(env.host, " * Uploading initial image to pithos...")
1230
    image = "debian_base.diskdump"
1231
    try_run("wget {0} -O /tmp/{1}".format(env.env.debian_base_url, image))
1232
    try_run("kamaki file upload --container images /tmp/{0} {0}".format(image))
1233

    
1234
@roles("client")
1235
def register_image(image="debian_base.diskdump"):
1236
    debug(env.host, " * Register image to plankton...")
1237
    # with settings(host_string=env.env.db.ip):
1238
    #     uid, user_auth_token, user_uuid = get_auth_token_from_db(env.env.user_email)
1239

    
1240
    image_location = "images:{0}".format(image)
1241
    cmd = """
1242
    sleep 5
1243
    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
1244
    """.format(image_location)
1245
    try_run(cmd)
1246

    
1247
@roles("client")
1248
def setup_burnin():
1249
    debug(env.host, "Setting up burnin testing tool...")
1250
    install_package("kamaki")
1251
    install_package("snf-tools")
1252

    
1253
@roles("pithos")
1254
def add_image_locally():
1255
    debug(env.host, " * Getting image locally in order snf-image to use it directly..")
1256
    image = "debian_base.diskdump"
1257
    try_run("wget {0} -O {1}/{2}".format(env.env.debian_base_url, env.env.image_dir, image))
1258

    
1259

    
1260
@roles("master")
1261
def gnt_instance_add(name="test"):
1262
    debug(env.host, " * Adding test instance to Ganeti...")
1263
    osp="""img_passwd=gamwtosecurity,img_format=diskdump,img_id=debian_base,img_properties='{"OSFAMILY":"linux"\,"ROOT_PARTITION":"1"}'"""
1264
    cmd = """
1265
    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}
1266
    """.format(osp, name)
1267
    try_run(cmd)
1268

    
1269
@roles("master")
1270
def gnt_network_add(name="test", subnet="10.0.0.0/26", gw="10.0.0.1", mode="bridged", link="br0"):
1271
    debug(env.host, " * Adding test network to Ganeti...")
1272
    cmd = """
1273
    gnt-network add --network={1} --gateway={2} {0}
1274
    gnt-network connect {0} {3} {4}
1275
    """.format(name, subnet, gw, mode, link)
1276
    try_run(cmd)
1277

    
1278
@roles("ips")
1279
def test():
1280
    debug(env.host, "Testing...")
1281
    try_run("hostname && date")