41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
# Copyright (c) 2016 Ansible, Inc.
|
|
# All Rights Reserved
|
|
|
|
from django.db import transaction
|
|
from django.core.management.base import BaseCommand, CommandError
|
|
|
|
from awx.main.models import Instance
|
|
from awx.main.utils.pglock import advisory_lock
|
|
|
|
|
|
class Command(BaseCommand):
|
|
"""
|
|
Deprovision a Tower cluster node
|
|
"""
|
|
|
|
help = (
|
|
'Remove instance from the database. '
|
|
'Specify `--hostname` to use this command.'
|
|
)
|
|
|
|
def add_arguments(self, parser):
|
|
parser.add_argument('--hostname', dest='hostname', type=str,
|
|
help='Hostname used during provisioning')
|
|
|
|
@transaction.atomic
|
|
def handle(self, *args, **options):
|
|
# TODO: remove in 3.3
|
|
hostname = options.get('hostname')
|
|
if not hostname:
|
|
raise CommandError("--hostname is a required argument")
|
|
with advisory_lock('instance_registration_%s' % hostname):
|
|
instance = Instance.objects.filter(hostname=hostname)
|
|
if instance.exists():
|
|
instance.delete()
|
|
print("Instance Removed")
|
|
print('Successfully deprovisioned {}'.format(hostname))
|
|
print('(changed: True)')
|
|
else:
|
|
print('No instance found matching name {}'.format(hostname))
|
|
|