mirror of
https://github.com/ansible/awx.git
synced 2026-01-27 16:41:29 -03:30
128 lines
5.0 KiB
Python
128 lines
5.0 KiB
Python
# Copyright (c) 2017 Ansible Tower by Red Hat
|
|
# All Rights Reserved.
|
|
import sys
|
|
|
|
from awx.main.utils.pglock import advisory_lock
|
|
from awx.main.models import Instance, InstanceGroup
|
|
|
|
from django.core.management.base import BaseCommand, CommandError
|
|
|
|
|
|
class InstanceNotFound(Exception):
|
|
def __init__(self, message, changed, *args, **kwargs):
|
|
self.message = message
|
|
self.changed = changed
|
|
super(InstanceNotFound, self).__init__(*args, **kwargs)
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
def add_arguments(self, parser):
|
|
parser.add_argument('--queuename', dest='queuename', type=str,
|
|
help='Queue to create/update')
|
|
parser.add_argument('--hostnames', dest='hostnames', type=str,
|
|
help='Comma-Delimited Hosts to add to the Queue (will not remove already assigned instances)')
|
|
parser.add_argument('--controller', dest='controller', type=str,
|
|
default='', help='The controlling group (makes this an isolated group)')
|
|
parser.add_argument('--instance_percent', dest='instance_percent', type=int, default=0,
|
|
help='The percentage of active instances that will be assigned to this group'),
|
|
parser.add_argument('--instance_minimum', dest='instance_minimum', type=int, default=0,
|
|
help='The minimum number of instance that will be retained for this group from available instances')
|
|
|
|
|
|
def get_create_update_instance_group(self, queuename, instance_percent, instance_min):
|
|
ig = InstanceGroup.objects.filter(name=queuename)
|
|
created = False
|
|
changed = False
|
|
|
|
(ig, created) = InstanceGroup.objects.get_or_create(name=queuename)
|
|
if ig.policy_instance_percentage != instance_percent:
|
|
ig.policy_instance_percentage = instance_percent
|
|
changed = True
|
|
if ig.policy_instance_minimum != instance_min:
|
|
ig.policy_instance_minimum = instance_min
|
|
changed = True
|
|
|
|
if changed:
|
|
ig.save()
|
|
|
|
return (ig, created, changed)
|
|
|
|
def update_instance_group_controller(self, ig, controller):
|
|
changed = False
|
|
control_ig = None
|
|
|
|
if controller:
|
|
control_ig = InstanceGroup.objects.filter(name=controller).first()
|
|
|
|
if control_ig and ig.controller_id != control_ig.pk:
|
|
ig.controller = control_ig
|
|
ig.save()
|
|
changed = True
|
|
|
|
return (control_ig, changed)
|
|
|
|
def add_instances_to_group(self, ig, hostname_list):
|
|
changed = False
|
|
|
|
instance_list_unique = set([x.strip() for x in hostname_list if x])
|
|
instances = []
|
|
for inst_name in instance_list_unique:
|
|
instance = Instance.objects.filter(hostname=inst_name)
|
|
if instance.exists():
|
|
instances.append(instance[0])
|
|
else:
|
|
raise InstanceNotFound("Instance does not exist: {}".format(inst_name), changed)
|
|
|
|
ig.instances.add(*instances)
|
|
|
|
instance_list_before = ig.policy_instance_list
|
|
instance_list_after = instance_list_unique
|
|
new_instances = set(instance_list_after) - set(instance_list_before)
|
|
if new_instances:
|
|
changed = True
|
|
ig.policy_instance_list = ig.policy_instance_list + list(new_instances)
|
|
ig.save()
|
|
|
|
return (instances, changed)
|
|
|
|
def handle(self, **options):
|
|
instance_not_found_err = None
|
|
queuename = options.get('queuename')
|
|
if not queuename:
|
|
raise CommandError("Specify `--queuename` to use this command.")
|
|
ctrl = options.get('controller')
|
|
inst_per = options.get('instance_percent')
|
|
inst_min = options.get('instance_minimum')
|
|
hostname_list = []
|
|
if options.get('hostnames'):
|
|
hostname_list = options.get('hostnames').split(",")
|
|
|
|
with advisory_lock('instance_group_registration_{}'.format(queuename)):
|
|
changed2 = False
|
|
changed3 = False
|
|
(ig, created, changed1) = self.get_create_update_instance_group(queuename, inst_per, inst_min)
|
|
if created:
|
|
print("Creating instance group {}".format(ig.name))
|
|
elif not created:
|
|
print("Instance Group already registered {}".format(ig.name))
|
|
|
|
if ctrl:
|
|
(ig_ctrl, changed2) = self.update_instance_group_controller(ig, ctrl)
|
|
if changed2:
|
|
print("Set controller group {} on {}.".format(ctrl, queuename))
|
|
|
|
try:
|
|
(instances, changed3) = self.add_instances_to_group(ig, hostname_list)
|
|
for i in instances:
|
|
print("Added instance {} to {}".format(i.hostname, ig.name))
|
|
except InstanceNotFound as e:
|
|
instance_not_found_err = e
|
|
|
|
if any([changed1, changed2, changed3]):
|
|
print('(changed: True)')
|
|
|
|
if instance_not_found_err:
|
|
print(instance_not_found_err.message)
|
|
sys.exit(1)
|