blob: 6b56cd191353ef9ee7b6769ff772d8b61f2e5be1 [file] [log] [blame]
Luca Preteed0bf282017-05-05 12:02:23 -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.66.12.7'
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 Preteed0bf282017-05-05 12:02:23 -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.66.12.7/24'
41 external_iface: 'ens255f1'
42 external_gw: '10.66.12.20'
43 skipTags:
44
45passwords:
46 compute_node: "ubuntu"
47 maas_admin: "admin"
48 maas_user: "cord"
49
50docker:
51 imageVersion: candidate
52
53otherNodes:
54 # Experimental
55 #
56 # Specifies the subnet and address range that will be used to allocate IP addresses
57 # to the compute nodes as they are deployed into the POD.
58 fabric:
59 network: 10.6.1.1/24
60 range_low: 10.6.1.2
61 range_high: 10.6.1.253