Commit 8b65d547 by Kyle McCormick

Attempt to add insights to sandbox build process

parent 12d9995b
...@@ -80,7 +80,7 @@ ...@@ -80,7 +80,7 @@
value: "{{ item[0].public_dns_name }}" value: "{{ item[0].public_dns_name }}"
with_nested: with_nested:
- "{{ ec2.instances }}" - "{{ ec2.instances }}"
- ['studio', 'ecommerce', 'preview', 'discovery', 'credentials'] - ['studio', 'ecommerce', 'preview', 'discovery', 'credentials', 'insights']
- name: Add new instance to host group - name: Add new instance to host group
local_action: local_action:
......
...@@ -324,7 +324,7 @@ EOF ...@@ -324,7 +324,7 @@ EOF
if [[ $server_type == "full_edx_installation" ]]; then if [[ $server_type == "full_edx_installation" ]]; then
extra_var_arg+=' -e instance_userdata="" -e launch_wait_time=0' extra_var_arg+=' -e instance_userdata="" -e launch_wait_time=0'
fi fi
# run the tasks to launch an ec2 instance from AMI # run the tasks to launch an ec2 instance from AMIF
cat $extra_vars_file cat $extra_vars_file
run_ansible edx_provision.yml -i inventory.ini $extra_var_arg --user ubuntu run_ansible edx_provision.yml -i inventory.ini $extra_var_arg --user ubuntu
...@@ -337,7 +337,7 @@ EOF ...@@ -337,7 +337,7 @@ EOF
fi fi
declare -A deploy declare -A deploy
roles="edxapp forum ecommerce credentials discovery notifier xqueue xserver certs demo testcourses" roles="edxapp forum ecommerce credentials discovery notifier xqueue xserver certs demo testcourses insights"
for role in $roles; do for role in $roles; do
deploy[$role]=${!role} deploy[$role]=${!role}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment