blob: ccf541a2ef69fa0904b8b43944ab06696cfa4c5a [file] [log] [blame]
Zack Williams01623162017-10-17 08:33:27 -07001---
You Wang3e6beac2017-08-31 15:12:13 -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
Luca Prete14dbba02017-09-12 13:50:36 -070016cord_scenario: cord
17cord_profile: rcord
Luca Prete92cef742017-05-10 09:38:55 -070018
Luca Prete14dbba02017-09-12 13:50:36 -070019vagrant_vms:
20 - 'corddev'
Luca Prete92cef742017-05-10 09:38:55 -070021
Luca Prete14dbba02017-09-12 13:50:36 -070022# Variables
23credentials_dir: '/opt/credentials'
24pki_dir: '/opt/pki'
25ssh_pki_dir: '/opt/ssh_pki'
Luca Prete92cef742017-05-10 09:38:55 -070026
Luca Prete14dbba02017-09-12 13:50:36 -070027fabric_ip: '10.6.1.1/24'
28management_ip: '10.6.0.1/24'
29external_ip: '10.201.101.21/24'
30external_gw: '10.201.101.1'
Luca Pretefd4c3662017-10-31 10:20:03 -070031external_iface: 'eth0'
Luca Prete14dbba02017-09-12 13:50:36 -070032management_network: 10.6.0.0/24
Luca Prete92cef742017-05-10 09:38:55 -070033
Luca Prete14dbba02017-09-12 13:50:36 -070034deploy_docker_registry: "10.201.101.21:5000"
Luca Prete92cef742017-05-10 09:38:55 -070035
Luca Prete14dbba02017-09-12 13:50:36 -070036headnode: cord@10.201.101.21
Luca Prete92cef742017-05-10 09:38:55 -070037
Luca Prete14dbba02017-09-12 13:50:36 -070038# NOTE: The `host_cord_profile_dir` variable below is the path to the cord_profile dir that
39# gets mounted to corddev VM.This `cord_profile` dir typically lives in a directory
40# one level up from the `cord` directory
Kailash Khalasi7f3349c2018-05-01 11:46:36 -070041host_cord_profile_dir: "/var/jenkins_home_new/workspace/cord_profile"
Luca Prete92cef742017-05-10 09:38:55 -070042
Luca Prete14dbba02017-09-12 13:50:36 -070043build_targets:
44 - 'setup-automation'
Luca Prete92cef742017-05-10 09:38:55 -070045
Luca Prete14dbba02017-09-12 13:50:36 -070046copy_cord_prereqs:
47 - 'config-ssh-key'
Luca Prete92cef742017-05-10 09:38:55 -070048
Luca Prete14dbba02017-09-12 13:50:36 -070049skipTags:
50 - 'set_compute_node_password'
Luca Prete92cef742017-05-10 09:38:55 -070051
Luca Prete14dbba02017-09-12 13:50:36 -070052# Wait until headnode prepped before building containers, for consistent DNS
53docker_images_prereqs:
54 - 'prep-headnode'
55
Zack Williams476f63c2017-10-31 18:19:08 -070056# set which interfaces to use for fabric/mgmt network
Luca Preteb0658292017-11-01 16:37:01 -070057fabric_include_names: 'eth2'
Luca Prete8be842a2017-11-01 16:44:40 -070058management_exclude_names: 'eth0,eth2'
Luca Prete14dbba02017-09-12 13:50:36 -070059
60# Inventory for ansible, used to generate inventory.ini
61inventory_groups:
62 config:
63 localhost:
64 ansible_connection: local
65 build:
66 corddev:
67 head:
68 head1:
69 ansible_host: 10.201.101.21
70 ansible_port: 22
71 ansible_user: cord
72 ansible_ssh_pass: cord
73 compute:
Zack Williams476f63c2017-10-31 18:19:08 -070074