| --- |
| # build-images/tasks/main.yml |
| |
| - name: Clean up chameleon temp directory |
| file: |
| path: "{{ build_cord_dir }}/orchestration/xos/containers/chameleon/tmp.chameleon" |
| state: absent |
| with_items: "{{ chameleon_dirs }}" |
| |
| - name: Populate chameleon temp directory |
| shell: cp -a "{{ build_cord_dir }}/component/chameleon" "{{ item }}" |
| with_items: "{{ chameleon_dirs }}" |
| tags: |
| - skip_ansible_lint # docker can't access files outside of build context, so we must copy |
| |
| # If an image was previously pulled it won't get built |
| - name: Build images |
| docker_image: |
| name: "{{ item.name }}" |
| path: "{{ item.path }}" |
| tag: "{{ build_docker_tag }}" |
| dockerfile: "{{ item.dockerfile }}" |
| pull: False |
| force: True |
| with_items: "{{ docker_images }}" |
| when: "{{ item.build | default(True) }}" |
| |
| - name: Build optional images |
| docker_image: |
| name: "{{ item.name }}" |
| path: "{{ item.path }}" |
| tag: "{{ build_docker_tag }}" |
| dockerfile: "{{ item.dockerfile }}" |
| pull: False |
| force: True |
| with_items: "{{ docker_optional_images }}" |
| when: build_optional_images |
| |
| # Build extensions images |
| - name: Build xos-gui-extensions docker images |
| docker_image: |
| name: "xosproject/gui-extension-{{ item.name }}" |
| path: "{{ build_cord_dir }}/{{ item.path }}" |
| tag: "{{ build_docker_tag }}" |
| pull: False |
| force: True |
| with_items: "{{ enabled_gui_extensions }}" |
| |
| # Build synchronizer images |
| - name: Build synchronizer docker images |
| docker_image: |
| name: "xosproject/{{ item.name }}-synchronizer" |
| path: "{{ build_cord_dir }}/{{ item.path }}/xos/synchronizer" |
| dockerfile: "Dockerfile.synchronizer" |
| tag: "{{ build_docker_tag }}" |
| pull: False |
| force: True |
| with_items: "{{ xos_services }}" |
| when: not frontend_only and (item.synchronizer is not defined or item.synchronizer) |