blob: 20ae694fe9fcde40baedadbcb97024e588bada28 [file] [log] [blame]
Luca Prete14a44062017-05-08 15:52:53 -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.118.126.11'
7 ansible_user: 'cord'
8 ansible_ssh_pass: 'cord'
9 ansible_ssh_port: 22
10
11common:
12 # set to the profile of cord you want to install
13 cord_profile: 'rcord'
14
Andy Bavier2218a722017-07-12 14:21:58 -070015 # cord dir is shared to corddev VM, causing permissions issues if these aren't set
16 credentials_dir: '/opt/credentials'
17 pki_dir: '/opt/pki'
18 ssh_pki_dir: '/opt/ssh_pki'
Luca Prete14a44062017-05-08 15:52:53 -070019
20 # all of these are written to genconfig/config.yml, and needs a rework
21
22 # Network address information for the head node:
23 #
24 # fabric_ip - the IP address and mask bits to be used to configure the network
25 # interface connected to the leaf - spine fabric
26 #
27 # management_ip - the IP address and mask bits to be used to configure the network
28 # interface connecting the head node to the POD internal
29 # management network. The head node will deliver DHCP addresses to
30 # the other compute nodes over this interface
31 #
32 # external_ip - the IP address and mask bits to be used to configure the network
33 # interface connecting the head node (and the POD) to the
34 # Internet. All traffic in the POD to external hosts will be
35 # NAT-ed through this interface
36 fabric_ip: '10.6.1.1/24'
37 management_ip: '10.6.0.1/24'
38 external_ip: '10.118.126.11/20'
39 external_iface: 'enp4s0f0'
40 external_gw: '10.118.112.1'
41 skipTags:
42
43passwords:
44 compute_node: "ubuntu"
45 maas_admin: "admin"
46 maas_user: "cord"
47
48docker:
49 imageVersion: candidate
50
51otherNodes:
52 # Experimental
53 #
54 # Specifies the subnet and address range that will be used to allocate IP addresses
55 # to the compute nodes as they are deployed into the POD.
56 fabric:
57 network: 10.6.1.1/24
58 range_low: 10.6.1.2
59 range_high: 10.6.1.253