Matteo Scandolo | 60b640f | 2017-08-08 13:05:22 -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 | |
Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 17 | --- |
| 18 | # local Scenario |
| 19 | # Brings up a minimal set of containers on the host currently being run on |
| 20 | |
| 21 | # create a cord_profile dir next to the cord checkout |
| 22 | config_cord_dir: "{{ ( playbook_dir ~ '/../..' ) | realpath }}" |
| 23 | config_cord_profile_dir: "{{ ( playbook_dir ~ '/../../../cord_profile' ) | realpath }}" |
| 24 | |
| 25 | # head = config in local scenario |
| 26 | head_cord_dir: "{{ config_cord_dir }}" |
| 27 | head_cord_profile_dir: "{{ config_cord_profile_dir }}" |
| 28 | |
| 29 | # make targets |
| 30 | build_targets: |
| 31 | - local-onboard-profile |
| 32 | |
| 33 | # local scenario configuration |
| 34 | frontend_only: True |
| 35 | create_configdirs_become: False |
| 36 | use_openstack: False |
| 37 | xos_images: [] |
| 38 | |
| 39 | # images for imagebuilder to build/pull (tagged elsewhere) |
| 40 | docker_image_whitelist: |
| 41 | - "xosproject/xos-base" |
| 42 | - "xosproject/xos" |
| 43 | - "xosproject/xos-client" |
| 44 | - "xosproject/xos-corebuilder" |
| 45 | - "xosproject/xos-gui" |
| 46 | - "xosproject/xos-gui-extension-builder" |
Zack Williams | eeeb6dd | 2017-07-13 10:50:28 -0700 | [diff] [blame] | 47 | - "xosproject/xos-libraries" |
Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 48 | - "xosproject/xos-postgres" |
Zack Williams | eeeb6dd | 2017-07-13 10:50:28 -0700 | [diff] [blame] | 49 | - "xosproject/xos-tosca" |
Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 50 | - "xosproject/xos-ws" |
| 51 | - "xosproject/chameleon" |
| 52 | - "xosproject/gui-extension-rcord" |
| 53 | - "xosproject/gui-extension-sample" |
| 54 | - "xosproject/gui-extension-vtr" |
| 55 | - "gliderlabs/consul-server" |
| 56 | - "gliderlabs/registrator" |
| 57 | - "redis" |
| 58 | - "nginx" |
Andy Bavier | 56b12b5 | 2017-08-03 11:46:42 -0700 | [diff] [blame] | 59 | - "node" |
Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 60 | |
| 61 | # Ansible Inventory |
| 62 | inventory_groups: |
| 63 | |
| 64 | config: |
| 65 | localhost: |
| 66 | ansible_connection: local |
| 67 | |
| 68 | build: |
| 69 | localhost: |
| 70 | ansible_connection: local |
| 71 | |
| 72 | head: |
| 73 | localhost: |
| 74 | ansible_connection: local |
| 75 | |
| 76 | compute: |
| 77 | |