Zack Williams | dae7ff6 | 2016-11-14 15:20:06 -0700 | [diff] [blame] | 1 | # Deployment configuration for a physical hardware POD |
David K. Bainbridge | 119a3b0 | 2016-06-16 18:10:30 -0700 | [diff] [blame] | 2 | --- |
Zack Williams | 0620c93 | 2017-01-25 14:36:31 -0700 | [diff] [blame] | 3 | |
| 4 | # this is used to generate the genconfig/cord-inv file |
| 5 | headnode: |
alshabib | cb8e09b | 2016-09-06 11:41:29 -0700 | [diff] [blame] | 6 | ip: '10.90.0.251' |
Zack Williams | 932646a | 2017-01-26 11:08:56 -0700 | [diff] [blame] | 7 | ansible_user: 'cord' |
| 8 | ansible_ssh_pass: 'cord' |
| 9 | ansible_ssh_port: 22 |
| 10 | |
Zack Williams | 0620c93 | 2017-01-25 14:36:31 -0700 | [diff] [blame] | 11 | common: |
Zack Williams | e29c7d8 | 2017-02-10 16:36:02 -0700 | [diff] [blame] | 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 | |
Zack Williams | 0620c93 | 2017-01-25 14:36:31 -0700 | [diff] [blame] | 21 | # all of these are written to genconfig/config.yml, and needs a rework |
| 22 | |
David K. Bainbridge | 119a3b0 | 2016-06-16 18:10:30 -0700 | [diff] [blame] | 23 | # 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' |
alshabib | 286ef8c | 2016-09-09 12:50:30 -0700 | [diff] [blame] | 39 | external_ip: '10.90.0.251/16' |
alshabib | 5e8a326 | 2016-08-25 14:00:47 -0700 | [diff] [blame] | 40 | external_iface: 'eth0' |
alshabib | 4970f27 | 2016-09-09 14:26:59 -0700 | [diff] [blame] | 41 | external_gw: '10.90.0.1' |
David K. Bainbridge | 119a3b0 | 2016-06-16 18:10:30 -0700 | [diff] [blame] | 42 | skipTags: |
alshabib | 0aac4e4 | 2016-06-17 15:47:08 -0700 | [diff] [blame] | 43 | |
David K. Bainbridge | ca3b5d2 | 2016-12-02 19:53:37 -0800 | [diff] [blame] | 44 | passwords: |
| 45 | compute_node: "ubuntu" |
| 46 | maas_admin: "admin" |
| 47 | maas_user: "cord" |
| 48 | |
alshabib | 0aac4e4 | 2016-06-17 15:47:08 -0700 | [diff] [blame] | 49 | docker: |
| 50 | imageVersion: candidate |
| 51 | |
David K. Bainbridge | 119a3b0 | 2016-06-16 18:10:30 -0700 | [diff] [blame] | 52 | otherNodes: |
| 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 |