Added CCP deployment scripts

This commit is contained in:
Aleksandr Didenko
2016-06-27 17:57:29 +02:00
parent 0c9826c60f
commit df4fe074f0
15 changed files with 285 additions and 3 deletions

24
playbooks/ccp-build.yaml Normal file
View File

@@ -0,0 +1,24 @@
- hosts: kube-master
pre_tasks:
- name: Rsync CCP repos
synchronize: src=/root/ccp/microservices-repos/ dest=/root/microservices-repos/
- name: Rsync MCP scripts and repo
synchronize:
src: /root/ccp/
dest: /root/ccp/
rsync_opts:
- "--exclude=/microservices-repos"
tasks:
- name: Install MCP
shell: "{{ item }}"
args:
chdir: /root/ccp/microservices/
creates: /usr/local/bin/mcp-microservices
with_items:
- pip install .
- python setup.py develop
- name: Build CCP images
shell: ./ccp-build.sh
args:
chdir: /root/ccp
run_once: true

10
playbooks/ccp-deploy.yaml Normal file
View File

@@ -0,0 +1,10 @@
- hosts: kube-master
pre_tasks:
- name: Rsync nodes list
synchronize: src=/root/nodes dest=/root/nodes
tasks:
- name: Deploy CCP
shell: ./ccp-deploy.sh
args:
chdir: /root/ccp
run_once: true