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
OpenEdx
configuration
Commits
1abd2503
Commit
1abd2503
authored
Oct 15, 2013
by
Feanil Patel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Blocking creation of a cloudformation stack.
parent
0b929275
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
73 additions
and
41 deletions
+73
-41
util/jenkins/create_stack.py
+73
-41
No files found.
util/jenkins/create_stack.py
View file @
1abd2503
import
argparse
import
boto
import
boto
import
time
from
os.path
import
basename
from
time
import
sleep
region
=
'us-east-1'
region
=
'us-east-1'
stack_name
=
'testautostack'
stack_name
=
'testautostack'
bucket_name
=
'edx-sandbox-devops2'
template
=
'/Users/feanil/src/configuration/cloudformation_templates/edx-reference-architecture.json'
template
=
'/Users/feanil/src/configuration/cloudformation_templates/edx-reference-architecture.json'
def
create_stack
(
stack_name
,
region
=
'us-east-1'
,
template_file
):
def
upload_file
(
file_path
,
bucket_name
,
key_name
):
"""
Upload a file to the given s3 bucket and return a template url.
"""
conn
=
boto
.
connect_s3
()
try
:
bucket
=
conn
.
get_bucket
(
bucket_name
)
except
boto
.
exception
.
S3ResponseError
as
e
:
conn
.
create_bucket
(
bucket_name
)
bucket
=
conn
.
get_bucket
(
bucket_name
,
validate
=
False
)
key
=
boto
.
s3
.
key
.
Key
(
bucket
)
key
.
key
=
key_name
key
.
set_contents_from_filename
(
file_path
)
# May not be necessary.
url
=
"https://s3.amazonaws.com/{}/{}"
.
format
(
bucket_name
,
key_name
)
return
url
def
create_stack
(
stack_name
,
template
,
region
=
'us-east-1'
,
blocking
=
True
):
cfn
=
boto
.
connect_cloudformation
()
cfn
=
boto
.
connect_cloudformation
()
stack_id
=
cfn
.
create_stack
(
stack_name
,
stack_body
=
open
(
template
)
.
read
(),
# Upload the template to s3
capabilities
=
[
'CAPABILITIY_IAM'
],
key_name
=
"cloudformation/auto/{}_{}"
.
format
(
stack_name
,
basename
(
template
))
notification_arns
=
[
'arn:aws:sns:us-east-1:372153017832:stack-creation-events'
],
template_url
=
upload_file
(
template
,
bucket_name
,
key_name
)
tags
=
{
'autostack'
:
'true'
})
# Reference the stack.
try
:
stack_id
=
cfn
.
create_stack
(
stack_name
,
template_url
=
template_url
,
capabilities
=
[
'CAPABILITY_IAM'
],
tags
=
{
'autostack'
:
'true'
},
parameters
=
[(
"KeyName"
,
"continuous-integration"
)])
except
Exception
as
e
:
print
(
e
.
message
)
raise
e
while
True
:
while
blocking
:
sleep
(
1
)
sleep
(
5
)
stack_instance
=
cfn
.
describe_stacks
(
stack_id
)[
0
]
stack_instance
=
cfn
.
describe_stacks
(
stack_id
)[
0
]
status
=
stack_instance
.
stack_status
status
=
stack_instance
.
stack_status
print
(
status
)
if
'COMPLETE'
in
status
:
if
'COMPLETE'
in
status
:
break
break
else
:
print
(
status
)
return
stack_id
create_stack
(
stack_name
,
region
,
template
)
create_stack
(
stack_name
,
template
,
region
)
print
(
'Stack({}) created.'
.
format
(
stack_name
))
print
(
'Stack({}) created.'
.
format
(
stack_name
))
#
# Create DNS for edxapp and xqueue.
#
#
Create DNS for edxapp and xqueue.
dns_settings
=
{
#
dns_settings = {
'edxapp'
:
[
'courses'
,
'studio'
],
#
'edxapp' : [ 'courses', 'studio' ],
'xqueue'
:
[
'xqueue'
],
#
'xqueue' : [ 'xqueue' ],
'rabbit'
:
[
'rabbit'
],
#
'rabbit' : [ 'rabbit' ],
'xserver'
:
[
'xserver'
],
#
'xserver' : [ 'xserver' ],
'worker'
:
[
'worker'
],
#
'worker' : [ 'worker' ],
}
#
}
#
# Create a zone for the stack.
#
#
Create a zone for the stack.
zone_name
=
"{}.vpc.edx.org"
.
format
(
stack_name
)
#
zone_name = "{}.vpc.edx.org".format(stack_name)
#
#TODO Make this a function instead of a class method.
#
#
TODO Make this a function instead of a class method.
zone
=
get_or_create_hosted_zone
(
zone_name
)
#
zone = get_or_create_hosted_zone(zone_name)
#
elbs
=
boto
.
connect_elb
()
#
elbs = boto.connect_elb()
#
#TODO Implement this.
#
#
TODO Implement this.
stack_elbs
=
elbs_for_stack_name
(
stack_name
)
#
stack_elbs = elbs_for_stack_name(stack_name)
for
elb
in
stack_elbs
:
#
for elb in stack_elbs:
for
service
,
dns_prefixes
in
dns_settings
.
items
():
#
for service, dns_prefixes in dns_settings.items():
if
service
in
elb
.
dns_name
.
lower
():
#
if service in elb.dns_name.lower():
for
prefix
in
dns_prefixes
:
#
for prefix in dns_prefixes:
# TODO: Make this function.
#
# TODO: Make this function.
create_service_dns
(
elb
,
prefix
,
zone_name
)
#
create_service_dns(elb, prefix, zone_name)
#
#
#
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