This repository has been archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 969
/
active_instances_in_asg.py
executable file
·115 lines (88 loc) · 4.87 KB
/
active_instances_in_asg.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#!/usr/bin/env python
"""
Build an ansible inventory list suitable for use by -i by finding the active
Auto Scaling Group in an Elastic Load Balancer.
If multiple ASGs are active in the ELB, no inventory is returned.
Assuming a single active ASG is found, a single machine is returned. This inventory
is generally used to target a single machine in a cluster to run a cmomand.
Typical reponse:
10.2.42.79,
Typical use
ansible -i $(active_instances_in_asg.py --asg stage-edx-edxapp) -m shell -a 'management command'
"""
import argparse
import botocore.session
import botocore.exceptions
import sys
from collections import defaultdict
from os import environ
from itertools import chain
import random
class ActiveInventory():
profile = None
def __init__(self, profile, region):
self.profile = profile
self.region = region
def run(self,asg_name):
session = botocore.session.Session(profile=self.profile)
asg = session.create_client('autoscaling',self.region)
ec2 = session.create_client('ec2',self.region)
asg_paginator = asg.get_paginator('describe_auto_scaling_groups')
asg_iterator = asg_paginator.paginate()
matching_groups = []
for groups in asg_iterator:
for asg in groups['AutoScalingGroups']:
asg_inactive = len(asg['SuspendedProcesses']) > 0
if asg_inactive:
continue
for tag in asg['Tags']:
if tag['Key'] == 'Name' and tag['Value'] == asg_name:
matching_groups.append(asg)
groups_to_instances = defaultdict(list)
instances_to_groups = {}
# for all instances in all auto scaling groups
for group in matching_groups:
for instance in group['Instances']:
if instance['LifecycleState'] == 'InService':
groups_to_instances[group['AutoScalingGroupName']].append(instance['InstanceId'])
instances_to_groups[instance['InstanceId']] = group['AutoScalingGroupName']
# We only need to check for ASGs in an ELB if we have more than 1.
# If a cluster is running with an ASG out of the ELB, then there are larger problems.
active_groups = defaultdict(dict)
if len(matching_groups) > 1:
elb = session.create_client('elb',self.region)
for group in matching_groups:
for load_balancer_name in group['LoadBalancerNames']:
instances = elb.describe_instance_health(LoadBalancerName=load_balancer_name)
active_instances = [instance['InstanceId'] for instance in instances['InstanceStates'] if instance['State'] == 'InService']
for instance_id in active_instances:
active_groups[instances_to_groups[instance_id]] = 1
# If we found no active groups, because there are no ELBs (edxapp workers normally)
elbs = list(chain.from_iterable([group['LoadBalancerNames'] for group in matching_groups]))
if not (active_groups or elbs):
# This implies we're in a worker cluster since we have no ELB and we didn't find an active group above
for group in matching_groups:
# Asgard marks a deleting ASG with SuspendedProcesses
# If the ASG doesn't have those, then it's "Active" and a worker since there was no ELB above
if not {'Launch','AddToLoadBalancer'} <= {i['ProcessName'] for i in group['SuspendedProcesses']}:
active_groups[group['AutoScalingGroupName']] = 1
if len(active_groups) > 1:
# When we have more than a single active ASG, we need to bail out as we don't know what ASG to pick an instance from
print("Multiple active ASGs - unable to choose an instance", file=sys.stderr)
return
else:
active_groups = { g['AutoScalingGroupName']: 1 for g in matching_groups }
for group in active_groups.keys():
for group_instance in groups_to_instances[group]:
instance = random.choice(ec2.describe_instances(InstanceIds=[group_instance])['Reservations'][0]['Instances'])
if 'PrivateIpAddress' in instance:
print("{},".format(instance['PrivateIpAddress']))
return # We only want a single IP
if __name__=="__main__":
parser = argparse.ArgumentParser()
parser.add_argument('-p', '--profile', help='The aws profile to use when connecting.')
parser.add_argument('-l', '--list', help='Ansible passes this, we ignore it.', action='store_true', default=True)
parser.add_argument('--asg',help='Name of the ASG we want active instances from.', required=True)
args = parser.parse_args()
region = environ.get('AWS_REGION','us-east-1')
ActiveInventory(args.profile,region).run(args.asg)