blob: 5913bc216692d624562eeaf8a2a227046267567f [file] [log] [blame]
Zack Williams63dd02f2017-10-16 22:30:00 -07001---
Matteo Scandolo60b640f2017-08-08 13:05:22 -07002# 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
Zack Williamsce63eb02017-02-28 10:46:22 -070016# local Scenario
17# Brings up a minimal set of containers on the host currently being run on
18
19# create a cord_profile dir next to the cord checkout
20config_cord_dir: "{{ ( playbook_dir ~ '/../..' ) | realpath }}"
21config_cord_profile_dir: "{{ ( playbook_dir ~ '/../../../cord_profile' ) | realpath }}"
22
23# head = config in local scenario
24head_cord_dir: "{{ config_cord_dir }}"
25head_cord_profile_dir: "{{ config_cord_profile_dir }}"
26
Matteo Scandoloc0ad92d2017-11-28 16:47:44 -080027xos_tosca_url: "http://127.0.0.1:9102"
28
Zack Williamsce63eb02017-02-28 10:46:22 -070029# 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"
Matteo Scandolo5c634b02017-11-16 10:13:55 -080046 - "xosproject/xos-gui-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"
Zack Williamsce63eb02017-02-28 10:46:22 -070052 - "gliderlabs/consul-server"
53 - "gliderlabs/registrator"
54 - "redis"
55 - "nginx"
Andy Bavier56b12b52017-08-03 11:46:42 -070056 - "node"
Zack Williamsce63eb02017-02-28 10:46:22 -070057
58# Ansible Inventory
59inventory_groups:
60
61 config:
62 localhost:
63 ansible_connection: local
64
65 build:
66 localhost:
67 ansible_connection: local
68
69 head:
70 localhost:
71 ansible_connection: local
72
73 compute:
74