Luca Prete | 14a4406 | 2017-05-08 15:52:53 -0700 | [diff] [blame] | 1 | # Deployment configuration for a physical hardware POD |
| 2 | --- |
| 3 | |
| 4 | # this is used to generate the genconfig/cord-inv file |
| 5 | headnode: |
| 6 | ip: '10.118.126.11' |
| 7 | ansible_user: 'cord' |
| 8 | ansible_ssh_pass: 'cord' |
| 9 | ansible_ssh_port: 22 |
| 10 | |
| 11 | common: |
| 12 | # set to the profile of cord you want to install |
| 13 | cord_profile: 'rcord' |
| 14 | |
Andy Bavier | 2218a72 | 2017-07-12 14:21:58 -0700 | [diff] [blame] | 15 | # 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 Prete | 14a4406 | 2017-05-08 15:52:53 -0700 | [diff] [blame] | 19 | |
| 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 | |
| 43 | passwords: |
| 44 | compute_node: "ubuntu" |
| 45 | maas_admin: "admin" |
| 46 | maas_user: "cord" |
| 47 | |
| 48 | docker: |
| 49 | imageVersion: candidate |
| 50 | |
| 51 | otherNodes: |
| 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 |