Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / logic / management / commands / backend-remove.py @ 3f52dd82

History | View | Annotate | Download (3.3 kB)

1
# Copyright 2011-2012 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or without
4
# modification, are permitted provided that the following conditions
5
# are met:
6
#
7
#   1. Redistributions of source code must retain the above copyright
8
#      notice, this list of conditions and the following disclaimer.
9
#
10
#  2. Redistributions in binary form must reproduce the above copyright
11
#     notice, this list of conditions and the following disclaimer in the
12
#     documentation and/or other materials provided with the distribution.
13
#
14
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
15
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17
# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
18
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24
# SUCH DAMAGE.
25
#
26
# The views and conclusions contained in the software and documentation are
27
# those of the authors and should not be interpreted as representing official
28
# policies, either expressed or implied, of GRNET S.A.
29
#
30

    
31
from django.core.management.base import BaseCommand, CommandError
32
from synnefo.db.models import Backend, VirtualMachine, BackendNetwork
33

    
34

    
35
class Command(BaseCommand):
36
    can_import_settings = True
37

    
38
    help = "Remove a backend from the Database. Backend should be set\n" \
39
           "to drained before trying to remove it, in order to avoid the\n" \
40
           "allocation of a new instances in this Backend.\n\n" \
41
           "Removal of a backend will fail if the backend hosts any\n" \
42
           "non-deleted instances."
43

    
44
    output_transaction = True  # The management command runs inside
45
                               # an SQL transaction
46

    
47
    def handle(self, *args, **options):
48
        if len(args) < 1:
49
            raise CommandError("Please provide a backend ID")
50

    
51
        try:
52
            backend_id = int(args[0])
53
            backend = Backend.objects.get(id=backend_id)
54
        except ValueError:
55
            raise CommandError("Invalid backend ID")
56
        except Backend.DoesNotExist:
57
            raise CommandError("Backend not found in DB")
58

    
59
        self.stdout.write('Trying to remove backend: %s\n' % backend.clustername)
60

    
61
        vms_in_backend = VirtualMachine.objects.filter(backend=backend,
62
                                                       deleted=False)
63

    
64
        if vms_in_backend:
65
            raise CommandError('Backend hosts non-deleted vms. Can not delete')
66

    
67
        networks = BackendNetwork.objects.filter(backend=backend, deleted=False)
68
        networks = [net.network.backend_id for net in networks]
69

    
70
        backend.delete()
71

    
72
        self.stdout.write('Successfully removed backend.\n')
73

    
74
        if networks:
75
            self.stdout.write('Left the following orphans networks in Ganeti:\n')
76
            self.stdout.write('  ' + '\n  * '.join(networks) + '\n')
77
            self.stdout.write('Manually remove them.\n')