Commit 7f55f488 by Vik Paruchuri

Fix for bastion push

parent eeeb2774
...@@ -17,15 +17,21 @@ ...@@ -17,15 +17,21 @@
- name : install python and its recommends - name : install python and its recommends
apt: pkg=python state=installed install_recommends=yes force=yes apt: pkg=python state=installed install_recommends=yes force=yes
sudo: True sudo: True
- name : install python-dev and its recommends
apt: pkg=python-dev state=installed install_recommends=yes force=yes
sudo: True
- name : install python pip and its recommends - name : install python pip and its recommends
apt: pkg=python-pip state=installed install_recommends=yes force=yes apt: pkg=python-pip state=installed install_recommends=yes force=yes
sudo: True sudo: True
- name : install python virtualenv and its recommends - name : install python virtualenv and its recommends
apt: pkg=python-virtualenv state=installed install_recommends=yes force=yes apt: pkg=python-virtualenv state=installed install_recommends=yes force=yes
sudo: True sudo: True
- name : install gccand its recommends
apt: pkg=gcc state=installed install_recommends=yes force=yes
sudo: True
- name: git checkout configuration repo into $app_base_dir - name: git checkout configuration repo into $app_base_dir
git: dest=$app_base_dir/configuration repo=git@github.com:edx/configuration.git version=vik/ml-api git: dest=$app_base_dir/configuration repo=git@github.com:edx/configuration.git version=vik/ml-api
- name: install requirements in python using pip - name: install requirements in python using pip
pip: requirements=$app_base_dir/configuration/ansible-requirements.txt virtualenv=/opt/edx pip: requirements=$app_base_dir/configuration/ansible-requirements.txt virtualenv=/opt/edx
- name: uploads any needed secret config files - name: uploads any needed secret config files
file: src=../../../../../edx-secret dest=/path/to/symlink owner=ubuntu group=edx state=file file: src=../../../../../edx-secret dest=$app_base_dir/edx-secret owner=ubuntu group=edx state=file
\ No newline at end of file \ No newline at end of file
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