blob: dfda974cfb4fd567c5c93f8e7b89858b1b94742e [file] [log] [blame]
Luca Pretef3fc09d2017-03-10 13:39:36 -08001# Deployment configuration for a physical hardware POD
2---
Luca Pretef860d7c2017-03-14 10:02:49 -07003
4# this is used to generate the genconfig/cord-inv file
5headnode:
Luca Pretef3fc09d2017-03-10 13:39:36 -08006 ip: '10.90.0.251'
Luca Pretef860d7c2017-03-14 10:02:49 -07007 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
16 # directories on the head node that the cord dir is copied to, and profile is created in
17 cord_dir: '/opt/cord'
18 cord_profile_dir: '/opt/cord_profile'
19
20
21 # all of these are written to genconfig/config.yml, and needs a rework
22
Luca Pretef3fc09d2017-03-10 13:39:36 -080023 # Network address information for the head node:
24 #
25 # fabric_ip - the IP address and mask bits to be used to configure the network
26 # interface connected to the leaf - spine fabric
27 #
28 # management_ip - the IP address and mask bits to be used to configure the network
29 # interface connecting the head node to the POD internal
30 # management network. The head node will deliver DHCP addresses to
31 # the other compute nodes over this interface
32 #
33 # external_ip - the IP address and mask bits to be used to configure the network
34 # interface connecting the head node (and the POD) to the
35 # Internet. All traffic in the POD to external hosts will be
36 # NAT-ed through this interface
37 fabric_ip: '10.6.1.1/24'
38 management_ip: '10.6.0.1/24'
39 external_ip: '10.90.0.251/16'
40 external_iface: 'eth0'
41 external_gw: '10.90.0.1'
42 skipTags:
43
44passwords:
45 compute_node: "ubuntu"
46 maas_admin: "admin"
47 maas_user: "cord"
48
49docker:
50 imageVersion: candidate
51
52otherNodes:
53 # Experimental
54 #
55 # Specifies the subnet and address range that will be used to allocate IP addresses
56 # to the compute nodes as they are deployed into the POD.
57 fabric:
58 network: 10.6.1.1/24
59 range_low: 10.6.1.2
60 range_high: 10.6.1.253