blob: 4ceddf851162afa64c24e0caf352f5df20ef31f4 [file] [log] [blame]
Luca Prete92cef742017-05-10 09:38:55 -07001# Deployment configuration for a physical hardware POD
2---
3
4# this is used to generate the genconfig/cord-inv file
5headnode:
6 ip: '10.201.101.21'
7 ansible_user: 'cord'
8 ansible_ssh_pass: 'cord'
9 ansible_ssh_port: 22
10
11common:
12
13 # set to the profile of cord you want to install
14 cord_profile: 'rcord'
15
Andy Bavier2218a722017-07-12 14:21:58 -070016 # cord dir is shared to corddev VM, causing permissions issues if these aren't set
17 credentials_dir: '/opt/credentials'
18 pki_dir: '/opt/pki'
19 ssh_pki_dir: '/opt/ssh_pki'
Luca Prete92cef742017-05-10 09:38:55 -070020
21
22 # all of these are written to genconfig/config.yml, and needs a rework
23
24 # Network address information for the head node:
25 #
26 # fabric_ip - the IP address and mask bits to be used to configure the network
27 # interface connected to the leaf - spine fabric
28 #
29 # management_ip - the IP address and mask bits to be used to configure the network
30 # interface connecting the head node to the POD internal
31 # management network. The head node will deliver DHCP addresses to
32 # the other compute nodes over this interface
33 #
34 # external_ip - the IP address and mask bits to be used to configure the network
35 # interface connecting the head node (and the POD) to the
36 # Internet. All traffic in the POD to external hosts will be
37 # NAT-ed through this interface
38 fabric_ip: '10.6.1.1/24'
39 management_ip: '10.6.0.1/24'
40 external_ip: '10.201.101.21/24'
41 external_iface: 'eth2'
42 external_gw: '10.201.101.1'
43 skipTags:
44 extraVars:
45 - 'management_ignore_names=eth0'
46
47passwords:
48 compute_node: "ubuntu"
49 maas_admin: "admin"
50 maas_user: "cord"
51
52docker:
53 imageVersion: candidate
54
55otherNodes:
56 # Experimental
57 #
58 # Specifies the subnet and address range that will be used to allocate IP addresses
59 # to the compute nodes as they are deployed into the POD.
60 fabric:
61 network: 10.6.1.1/24
62 range_low: 10.6.1.2
63 range_high: 10.6.1.253
64