blob: ad396216eeec815235d82f98d4593f88f885e57b [file] [log] [blame]
Zack Williams9f42b972018-01-10 15:05:35 -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# preppedkube Scenario - install CORD on kubernetes, on pre-prepared systems with OS installed
17
18frontend_only: False
19use_k8s: True
20use_maas: False
21use_openstack: False
22
23# create a cord_profile dir next to the cord checkout
24config_cord_dir: "{{ ( playbook_dir ~ '/../..' ) | realpath }}"
25config_cord_profile_dir: "{{ ( playbook_dir ~ '/../../../cord_profile' ) | realpath }}"
26
27create_configdirs_become: False
28
29build_cord_dir: /opt/cord
30
31# Vagrant VM configuration
32vagrant_box: "bento/ubuntu-16.04"
33
34head_vm_mem: 16384
35head_vm_cpu: 8
36
37compute_vm_mem: 16384
38compute_vm_cpu: 8
39
40buildnode: head1
41headnode: head1
42
43vagrant_vms:
44 - head1
45 - compute1
46 - compute2
47
48# Make build config
49build_targets:
50 - start-xos-helm
51
52vagrant_up_prereqs:
53 - prereqs-check
54
55config_ssh_key_prereqs:
56 - vagrant-ssh-install
57
58copy_cord_prereqs:
59 - vagrant-ssh-install
60
61cord_config_prereqs:
62 - vagrant-ssh-install
63 - copy-cord
64
65prep_buildnode_prereqs:
66 - copy-cord
67 - copy-config
68
69# Run build prep before head prep, when build == head
70prep_headnode_prereqs:
71 - prep-buildnode
72
73# Wait until headnode prepped before building containers, for consistent DNS
74docker_images_prereqs:
75 - prep-headnode
76
77# have kubespray skip docker installation
78skipTags:
79 - docker
80
81# node topology, used to bring up management interfaces
82physical_node_list:
83 - name: head1
84 ipv4_last_octet: 1
85 aliases:
86 - head
87 - name: compute1
88 ipv4_last_octet: 17
89 - name: compute2
90 ipv4_last_octet: 18
91
Zack Williams9f42b972018-01-10 15:05:35 -070092vm_management_network_name: cordmgmt
93vm_public_network_name: cordpub
94vm_public_network_cidr: "10.230.100.0/24"
95
Zack Williams9f42b972018-01-10 15:05:35 -070096# images for imagebuilder to build/pull (tagged elsewhere)
97docker_image_whitelist:
98 - "xosproject/xos-base"
Scott Baker3c3f06a2018-03-29 15:38:36 -070099 - "xosproject/xos-core"
Zack Williams9f42b972018-01-10 15:05:35 -0700100 - "xosproject/xos-client"
Zack Williams9f42b972018-01-10 15:05:35 -0700101 - "xosproject/xos-gui"
102 - "xosproject/xos-gui-builder"
103 - "xosproject/xos-libraries"
Zack Williams9f42b972018-01-10 15:05:35 -0700104 - "xosproject/xos-tosca"
105 - "xosproject/xos-ws"
106 - "xosproject/chameleon"
107 - "xosproject/xos-synchronizer-base"
Zack Williams9f42b972018-01-10 15:05:35 -0700108 - "nginx"
Zack Williams9bb7e7b2018-04-02 13:31:29 -0700109 - "node"
Zack Williams9f42b972018-01-10 15:05:35 -0700110 - "onosproject/onos"
111 - "opencord/mavenrepo"
Zack Williams9bb7e7b2018-04-02 13:31:29 -0700112 - "postgres"
Zack Williams9f42b972018-01-10 15:05:35 -0700113 - "redis"
Zack Williams9f42b972018-01-10 15:05:35 -0700114 - "sebp/elk"
115
116# Ansible Inventory
117inventory_groups:
118
119 config:
120 localhost:
121 ansible_connection: local
122
123 build:
124 head1:
125
126 head:
127 head1:
128
129 compute:
130 compute1:
131 compute2:
132