blob: 652c2459340f1d62e6f6c7908a38429fc9e223dd [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
Zack Williams82f24ca2017-12-30 13:53:46 -070026vagrant_box: "bento/ubuntu-16.04"
Zack Williams3aa32f02017-12-13 19:58:19 -070027head_vm_mem: 4096
28head_vm_cpu: 8
29head_vm_ip: "192.168.46.100"
30
Zack Williams7ec0e392018-01-24 17:38:56 -070031buildnode: head1
32headnode: head1
33
Zack Williams3aa32f02017-12-13 19:58:19 -070034physical_node_list:
35 - name: head1
36 ipv4_last_octet: 1
37 aliases:
38 - head
39
40# make targets
41build_targets:
42 - onboard-profile
43
44cord_config_prereqs:
45 - vagrant-ssh-install
46
47prep_headnode_prereqs:
48 - prep-buildnode
49
50docker_images_prereqs:
51 - prep-headnode
52
53start_xos_prereqs:
54 - deploy-onos
55
56# controlpod scenario configuration
57frontend_only: False
58use_maas: False
59use_apt_cache: False
60use_openstack: False
61create_configdirs_become: False
62xos_images: []
63
64# whitelist of images for imagebuilder to build/pull (tagged elsewhere)
65docker_image_whitelist:
66 - "xosproject/xos-base"
67 - "xosproject/xos"
Scott Baker9a4d0a12018-03-09 07:52:02 -080068 - "xosproject/xos-ui"
Zack Williams3aa32f02017-12-13 19:58:19 -070069 - "xosproject/xos-client"
70 - "xosproject/xos-corebuilder"
71 - "xosproject/xos-gui"
72 - "xosproject/xos-gui-builder"
73 - "xosproject/xos-libraries"
74 - "xosproject/xos-postgres"
75 - "xosproject/xos-tosca"
76 - "xosproject/xos-ws"
77 - "xosproject/chameleon"
78 - "xosproject/xos-synchronizer-base"
Zack Williams3aa32f02017-12-13 19:58:19 -070079 - "nginx"
80 - "onosproject/onos"
81 - "opencord/mavenrepo"
82 - "redis"
83 - "node"
84
85# Ansible Inventory
86inventory_groups:
87
88 config:
89 localhost:
90 ansible_connection: local
91
92 build:
93 head1:
94
95 head:
96 head1:
97
98 compute:
99