Andy Bavier | 175cfaf | 2017-03-13 18:09:21 -0400 | [diff] [blame] | 1 | --- |
| 2 | # group_vars/all |
| 3 | |
| 4 | # Defaults for XOS container build and publish roles. |
| 5 | # Can be overridden by variables in the profile manifest. |
| 6 | |
| 7 | cord_dir: "{{ ansible_user_dir + '/cord' }}" |
| 8 | |
| 9 | chameleon_dirs: |
| 10 | - "{{ cord_dir }}/orchestration/xos/containers/chameleon/tmp.chameleon" |
| 11 | - "{{ cord_dir }}/orchestration/xos/containers/xos/tmp.chameleon" |
| 12 | |
| 13 | docker_images: |
| 14 | - name: "xosproject/xos-base" |
| 15 | path: "{{ cord_dir }}/orchestration/xos/containers/xos" |
| 16 | dockerfile: "Dockerfile.base" |
| 17 | pull: True |
Andy Bavier | 396f7c0 | 2017-05-03 08:52:40 -0700 | [diff] [blame] | 18 | build: False |
Andy Bavier | 175cfaf | 2017-03-13 18:09:21 -0400 | [diff] [blame] | 19 | publish: False |
Andy Bavier | 396f7c0 | 2017-05-03 08:52:40 -0700 | [diff] [blame] | 20 | - name: "xosproject/xos-postgres" |
| 21 | path: "{{ cord_dir }}/orchestration/xos/containers/postgresql" |
| 22 | dockerfile: "Dockerfile" |
| 23 | pull: True |
| 24 | publish: True |
Andy Bavier | 175cfaf | 2017-03-13 18:09:21 -0400 | [diff] [blame] | 25 | - name: "xosproject/xos" |
| 26 | path: "{{ cord_dir }}/orchestration/xos" |
| 27 | dockerfile: "containers/xos/Dockerfile.xos" |
| 28 | pull: False |
| 29 | publish: True |
| 30 | - name: "xosproject/chameleon" |
| 31 | path: "{{ cord_dir }}/orchestration/xos/containers/chameleon" |
| 32 | dockerfile: "Dockerfile.chameleon" |
| 33 | pull: False |
| 34 | publish: True |
| 35 | - name: "xosproject/xos-client" |
| 36 | path: "{{ cord_dir }}/orchestration/xos" |
| 37 | dockerfile: "containers/xos/Dockerfile.client" |
| 38 | pull: False |
| 39 | publish: True |
| 40 | - name: "xosproject/xos-synchronizer-base" |
| 41 | path: "{{ cord_dir }}/orchestration/xos" |
| 42 | dockerfile: "containers/xos/Dockerfile.synchronizer-base" |
| 43 | pull: False |
| 44 | publish: True |
Matteo Scandolo | 725c9c4 | 2017-04-19 15:46:25 -0700 | [diff] [blame] | 45 | - name: "xosproject/xos-ws" |
| 46 | path: "{{ cord_dir }}/orchestration/xos-rest-gw" # TODO rename repo |
Andy Bavier | 175cfaf | 2017-03-13 18:09:21 -0400 | [diff] [blame] | 47 | dockerfile: "Dockerfile" |
| 48 | pull: False |
| 49 | publish: True |
| 50 | - name: "xosproject/xos-gui" |
| 51 | path: "{{ cord_dir }}/orchestration/xos-gui" |
| 52 | dockerfile: "Dockerfile" |
| 53 | pull: False |
| 54 | publish: True |
| 55 | - name: "xosproject/xos-gui-extension-builder" |
| 56 | path: "{{ cord_dir }}/orchestration/xos-gui/" |
| 57 | dockerfile: "Dockerfile.xos-gui-extension-builder" |
| 58 | pull: False |
| 59 | publish: False |
Scott Baker | eb201f2 | 2017-04-10 11:47:58 -0700 | [diff] [blame] | 60 | - name: "xosproject/xos-corebuilder" |
| 61 | path: "{{ cord_dir }}/orchestration/xos" |
| 62 | dockerfile: "containers/xos/Dockerfile.corebuilder" |
| 63 | pull: False |
| 64 | publish: True |
Andy Bavier | 8166b0b | 2017-04-26 13:34:41 -0700 | [diff] [blame] | 65 | - name: "nginx:latest" |
| 66 | path: "" |
| 67 | dockerfile: "" |
| 68 | pull: True |
| 69 | publish: False |
Andy Bavier | 175cfaf | 2017-03-13 18:09:21 -0400 | [diff] [blame] | 70 | |
| 71 | build_optional_images: False |
| 72 | |
| 73 | docker_optional_images: |
Zack Williams | 52986b2 | 2017-04-19 16:28:25 -0700 | [diff] [blame] | 74 | - name: "xosproject/xos-test" |
Andy Bavier | 175cfaf | 2017-03-13 18:09:21 -0400 | [diff] [blame] | 75 | dockerfile: "Dockerfile.test" |
| 76 | pull: False |
| 77 | publish: False |
| 78 | |
| 79 | build_docker_tag: "candidate" |
| 80 | |
| 81 | misc_docker_images: |
Matteo Scandolo | 337c829 | 2017-05-09 15:08:52 -0700 | [diff] [blame] | 82 | - "node:7.9.0" |
Andy Bavier | 175cfaf | 2017-03-13 18:09:21 -0400 | [diff] [blame] | 83 | |
Matteo Scandolo | 725c9c4 | 2017-04-19 15:46:25 -0700 | [diff] [blame] | 84 | enabled_gui_extensions: [] |
Andy Bavier | 7bcd283 | 2017-03-23 13:45:21 -0400 | [diff] [blame] | 85 | |
| 86 | frontend_only: False |
| 87 | |
| 88 | xos_services: [] |