blob: 7abaac4f8ed0617495d02312e8b07b70b1d61fb3 [file] [log] [blame]
Andy Bavier175cfaf2017-03-13 18:09:21 -04001---
2# build-images/tasks/main.yml
3
4- name: Clean up chameleon temp directory
5 file:
Zack Williamsf517e402017-05-20 13:37:43 -07006 path: "{{ build_cord_dir }}/orchestration/xos/containers/chameleon/tmp.chameleon"
Andy Bavier175cfaf2017-03-13 18:09:21 -04007 state: absent
8 with_items: "{{ chameleon_dirs }}"
9
10- name: Populate chameleon temp directory
Zack Williamsf517e402017-05-20 13:37:43 -070011 shell: cp -a "{{ build_cord_dir }}/component/chameleon" "{{ item }}"
Andy Bavier175cfaf2017-03-13 18:09:21 -040012 with_items: "{{ chameleon_dirs }}"
13 tags:
14 - skip_ansible_lint # docker can't access files outside of build context, so we must copy
15
16# If an image was previously pulled it won't get built
17- name: Build images
18 docker_image:
19 name: "{{ item.name }}"
20 path: "{{ item.path }}"
21 tag: "{{ build_docker_tag }}"
22 dockerfile: "{{ item.dockerfile }}"
23 pull: False
Andy Bavier396f7c02017-05-03 08:52:40 -070024 force: True
Andy Bavier175cfaf2017-03-13 18:09:21 -040025 with_items: "{{ docker_images }}"
Andy Bavier396f7c02017-05-03 08:52:40 -070026 when: "{{ item.build | default(True) }}"
Andy Bavier175cfaf2017-03-13 18:09:21 -040027
28- name: Build optional images
29 docker_image:
30 name: "{{ item.name }}"
31 path: "{{ item.path }}"
32 tag: "{{ build_docker_tag }}"
33 dockerfile: "{{ item.dockerfile }}"
34 pull: False
Andy Bavier396f7c02017-05-03 08:52:40 -070035 force: True
Andy Bavier175cfaf2017-03-13 18:09:21 -040036 with_items: "{{ docker_optional_images }}"
37 when: build_optional_images
38
39# Build extensions images
40- name: Build xos-gui-extensions docker images
41 docker_image:
42 name: "xosproject/gui-extension-{{ item.name }}"
Zack Williamsf517e402017-05-20 13:37:43 -070043 path: "{{ build_cord_dir }}/{{ item.path }}"
Andy Bavier175cfaf2017-03-13 18:09:21 -040044 tag: "{{ build_docker_tag }}"
45 pull: False
Andy Bavier396f7c02017-05-03 08:52:40 -070046 force: True
Andy Bavier175cfaf2017-03-13 18:09:21 -040047 with_items: "{{ enabled_gui_extensions }}"
Andy Bavier7bcd2832017-03-23 13:45:21 -040048
49# Build synchronizer images
50- name: Build synchronizer docker images
51 docker_image:
52 name: "xosproject/{{ item.name }}-synchronizer"
Zack Williamsf517e402017-05-20 13:37:43 -070053 path: "{{ build_cord_dir }}/{{ item.path }}/xos/synchronizer"
Andy Bavier7bcd2832017-03-23 13:45:21 -040054 dockerfile: "Dockerfile.synchronizer"
55 tag: "{{ build_docker_tag }}"
56 pull: False
Andy Bavier396f7c02017-05-03 08:52:40 -070057 force: True
Andy Bavier7bcd2832017-03-23 13:45:21 -040058 with_items: "{{ xos_services }}"
Zack Williamse5b29652017-06-02 20:11:29 -070059 when: not frontend_only and (item.synchronizer is not defined or item.synchronizer)