blob: d904149cbafcffc3cf47ac96d2c207f5de2d37fa [file] [log] [blame]
Zack Williams3aa32f02017-12-13 19:58:19 -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# controlpod scenario
17# Brings up XOS with synchronizers and ONOS
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
23build_cord_dir: /opt/cord
24
25# Vagrant VM configuration
26head_vagrant_box: "generic/ubuntu1604"
27head_vm_mem: 4096
28head_vm_cpu: 8
29head_vm_ip: "192.168.46.100"
30
31physical_node_list:
32 - name: head1
33 ipv4_last_octet: 1
34 aliases:
35 - head
36
37# make targets
38build_targets:
39 - onboard-profile
40
41cord_config_prereqs:
42 - vagrant-ssh-install
43
44prep_headnode_prereqs:
45 - prep-buildnode
46
47docker_images_prereqs:
48 - prep-headnode
49
50start_xos_prereqs:
51 - deploy-onos
52
53# controlpod scenario configuration
54frontend_only: False
55use_maas: False
56use_apt_cache: False
57use_openstack: False
58create_configdirs_become: False
59xos_images: []
60
61# whitelist of images for imagebuilder to build/pull (tagged elsewhere)
62docker_image_whitelist:
63 - "xosproject/xos-base"
64 - "xosproject/xos"
65 - "xosproject/xos-client"
66 - "xosproject/xos-corebuilder"
67 - "xosproject/xos-gui"
68 - "xosproject/xos-gui-builder"
69 - "xosproject/xos-libraries"
70 - "xosproject/xos-postgres"
71 - "xosproject/xos-tosca"
72 - "xosproject/xos-ws"
73 - "xosproject/chameleon"
74 - "xosproject/xos-synchronizer-base"
75 - "gliderlabs/consul-server"
76 - "gliderlabs/registrator"
77 - "nginx"
78 - "onosproject/onos"
79 - "opencord/mavenrepo"
80 - "redis"
81 - "node"
82
83# Ansible Inventory
84inventory_groups:
85
86 config:
87 localhost:
88 ansible_connection: local
89
90 build:
91 head1:
92
93 head:
94 head1:
95
96 compute:
97