blob: 052acb1ba13bfe7877b2b2d131299c404ef11b39 [file] [log] [blame]
Matteo Scandolo60b640f2017-08-08 13:05:22 -07001
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 Williamsce63eb02017-02-28 10:46:22 -070017---
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
22config_cord_dir: "{{ ( playbook_dir ~ '/../..' ) | realpath }}"
23config_cord_profile_dir: "{{ ( playbook_dir ~ '/../../../cord_profile' ) | realpath }}"
24
25# head = config in local scenario
26head_cord_dir: "{{ config_cord_dir }}"
27head_cord_profile_dir: "{{ config_cord_profile_dir }}"
28
29# make targets
30build_targets:
31 - local-onboard-profile
32
33# local scenario configuration
34frontend_only: True
35create_configdirs_become: False
36use_openstack: False
37xos_images: []
38
39# images for imagebuilder to build/pull (tagged elsewhere)
40docker_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 Williamseeeb6dd2017-07-13 10:50:28 -070047 - "xosproject/xos-libraries"
Zack Williamsce63eb02017-02-28 10:46:22 -070048 - "xosproject/xos-postgres"
Zack Williamseeeb6dd2017-07-13 10:50:28 -070049 - "xosproject/xos-tosca"
Zack Williamsce63eb02017-02-28 10:46:22 -070050 - "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 Bavier56b12b52017-08-03 11:46:42 -070059 - "node"
Zack Williamsce63eb02017-02-28 10:46:22 -070060
61# Ansible Inventory
62inventory_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