Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
configuration
Commits
b10e08cf
Commit
b10e08cf
authored
Feb 09, 2017
by
Kevin Falcone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle the edxapp worker case with two ASGs but no ELBs
Previously it would exit without a message but no inventory.
parent
3527e8f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
playbooks/active_instances_in_asg.py
+7
-0
No files found.
playbooks/active_instances_in_asg.py
View file @
b10e08cf
...
@@ -26,6 +26,7 @@ import botocore.exceptions
...
@@ -26,6 +26,7 @@ import botocore.exceptions
import
sys
import
sys
from
collections
import
defaultdict
from
collections
import
defaultdict
from
os
import
environ
from
os
import
environ
from
itertools
import
chain
class
ActiveInventory
():
class
ActiveInventory
():
...
@@ -61,6 +62,12 @@ class ActiveInventory():
...
@@ -61,6 +62,12 @@ class ActiveInventory():
# 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
# 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
)
print
(
"Multiple active ASGs - unable to choose an instance"
,
file
=
sys
.
stderr
)
return
return
# If we found no active groups, because there are no ELBs (edxapp workers normally)
# print a sensible reason why we failed
elbs
=
list
(
chain
.
from_iterable
([
group
[
'LoadBalancerNames'
]
for
group
in
matching_groups
]))
if
not
(
active_groups
or
elbs
):
print
(
"Multiple ASGs and no ELB - unable to choose an instance"
,
file
=
sys
.
stderr
)
return
else
:
else
:
active_groups
=
{
g
[
'AutoScalingGroupName'
]:
1
for
g
in
matching_groups
}
active_groups
=
{
g
[
'AutoScalingGroupName'
]:
1
for
g
in
matching_groups
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment