Matteo Scandolo | 3896c47 | 2017-08-01 13:31:42 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | |
Scott Baker | 5719654 | 2017-04-11 15:48:17 -0700 | [diff] [blame] | 17 | --- |
| 18 | # xos-core-build/tasks/main.yml |
| 19 | |
| 20 | - name: Intialize recipe list |
| 21 | set_fact: |
Sapan Bhatia | e86a3d2 | 2017-04-27 00:53:27 +0200 | [diff] [blame] | 22 | recipes: ['/opt/cord/orchestration/xos/xos/core/core-onboard.yaml'] |
Scott Baker | 5719654 | 2017-04-11 15:48:17 -0700 | [diff] [blame] | 23 | |
Scott Baker | 294ee42 | 2018-02-08 17:15:13 -0800 | [diff] [blame] | 24 | - name: Check to see which recipes exist |
| 25 | stat: |
| 26 | path: "{{ build_cord_dir | realpath }}/{{ item.path }}/xos/{{ item.name }}-{{ item.operation | default('onboard') }}.yaml" |
| 27 | register: service_stats |
| 28 | with_items: "{{ xos_services }}" |
| 29 | |
Scott Baker | 5719654 | 2017-04-11 15:48:17 -0700 | [diff] [blame] | 30 | - name: Generate list of recipes |
| 31 | set_fact: |
Scott Baker | 294ee42 | 2018-02-08 17:15:13 -0800 | [diff] [blame] | 32 | recipes: "{{ recipes }} + [ '/opt/cord/{{ item.0.path }}/xos/{{ item.0.name }}-{{ item.0.operation | default('onboard') }}.yaml']" |
| 33 | with_together: |
| 34 | - "{{ xos_services }}" |
| 35 | - "{{ service_stats.results }}" |
| 36 | when: |
| 37 | - item.1.stat.exists == true |
Scott Baker | 5719654 | 2017-04-11 15:48:17 -0700 | [diff] [blame] | 38 | |
Scott Baker | 6a2065c | 2017-04-20 15:27:41 -0700 | [diff] [blame] | 39 | - name: Add in the profile library |
| 40 | set_fact: |
| 41 | recipes: "{{ recipes }} + [ '/opt/cord/orchestration/profiles/{{ profile_library }}/xos/{{ profile_library }}-onboard.yaml']" |
| 42 | when: |
| 43 | profile_library != "" |
| 44 | |
Scott Baker | 5719654 | 2017-04-11 15:48:17 -0700 | [diff] [blame] | 45 | - name: Join the list of recipes |
| 46 | set_fact: |
| 47 | recipes_string: "{{ recipes | join(' ') }}" |
| 48 | |
| 49 | - debug: |
| 50 | msg: "{{ recipes }}" |
| 51 | |
| 52 | - name: Create the BUILD directory |
| 53 | file: |
Zack Williams | c989f26 | 2017-05-11 13:02:59 -0700 | [diff] [blame] | 54 | path: "{{ build_cord_dir | realpath }}/orchestration/xos/containers/xos/BUILD" |
Scott Baker | 5719654 | 2017-04-11 15:48:17 -0700 | [diff] [blame] | 55 | state: directory |
| 56 | mode: 0755 |
| 57 | |
| 58 | # Run the corebuilder tool -- we can't do this using a docker ansible command, |
| 59 | # as we have to wait for the tool to complete before continuing. |
| 60 | |
| 61 | - name: Run the corebuilder tool |
| 62 | shell: > |
| 63 | docker run |
| 64 | --rm |
Zack Williams | c989f26 | 2017-05-11 13:02:59 -0700 | [diff] [blame] | 65 | -v {{ build_cord_dir | realpath }}:/opt/cord |
| 66 | -v {{ build_cord_dir ~ "/orchestration/xos/containers/xos/BUILD" | realpath }}:/opt/xos_corebuilder/BUILD |
| 67 | xosproject/xos-corebuilder:{{ build_docker_tag }} |
Scott Baker | 5719654 | 2017-04-11 15:48:17 -0700 | [diff] [blame] | 68 | {{ recipes_string }} |
| 69 | tags: |
| 70 | - skip_ansible_lint # running a build task |
| 71 | |
| 72 | - name: Build UI image |
| 73 | docker_image: |
| 74 | name: "xosproject/xos-ui" |
Zack Williams | c989f26 | 2017-05-11 13:02:59 -0700 | [diff] [blame] | 75 | path: "{{ build_cord_dir | realpath }}/orchestration/xos" |
Scott Baker | 5719654 | 2017-04-11 15:48:17 -0700 | [diff] [blame] | 76 | tag: "{{ build_docker_tag }}" |
| 77 | dockerfile: "containers/xos/Dockerfile.UI" |
| 78 | pull: False |
Andy Bavier | fa53a8d | 2017-05-03 08:47:16 -0700 | [diff] [blame] | 79 | force: True |