Zack Williams | e3579c4 | 2017-01-09 14:15:02 -0700 | [diff] [blame] | 1 | --- |
| 2 | |
David K. Bainbridge | 0a7cdbb | 2017-07-14 11:36:13 -0700 | [diff] [blame^] | 3 | pub_ssh_key_file_location: "{{ pub_ssh_key_location | default ('/etc/maas/.ssh') }}" |
| 4 | pub_ssh_key: "{{ lookup('file', pub_ssh_key_file_location+'/cord_rsa.pub') }}" |
David K. Bainbridge | 8db2f30 | 2016-05-19 23:41:13 -0700 | [diff] [blame] | 5 | |
| 6 | compute_node: |
Zack Williams | e3579c4 | 2017-01-09 14:15:02 -0700 | [diff] [blame] | 7 | password: "{{password_compute_node | default(lookup('password', 'passwords/compute_node.txt chars=ascii_letters,digits'))}}" |
David K. Bainbridge | 603ee54 | 2016-10-04 21:11:05 -0700 | [diff] [blame] | 8 | fabric: |
| 9 | include: |
| 10 | names: "{{ fabric_include_names | default(omit) }}" |
| 11 | module_types: "{{ fabric_include_module_types | default('i40e, mlx4_en') }}" |
| 12 | bus_types: "{{ fabric_include_bus_types | default(omit) }}" |
| 13 | exclude: |
| 14 | names: "{{ fabric_exclude_names | default(omit) }}" |
| 15 | module_types: "{{ fabric_exclude_module_types | default(omit) }}" |
| 16 | bus_types: "{{ fabric_exclude_bus_types | default(omit) }}" |
| 17 | ignore: |
| 18 | names: "{{ fabric_ignore_names | default(omit) }}" |
| 19 | module_types: "{{ fabric_ignore_module_types | default(omit) }}" |
| 20 | bus_types: "{{ fabric_ignore_bus_types | default(omit) }}" |
| 21 | management: |
| 22 | include: |
| 23 | names: "{{ management_include_names | default(omit) }}" |
| 24 | module_types: "{{ management_include_module_types | default(omit) }}" |
| 25 | bus_types: "{{ management_include_bus_types | default(omit) }}" |
| 26 | exclude: |
| 27 | names: "{{ management_exclude_names | default(omit) }}" |
| 28 | module_types: "{{ management_exclude_module_types | default(omit) }}" |
| 29 | bus_types: "{{ management_exclude_bus_types | default(omit) }}" |
| 30 | ignore: |
| 31 | names: "{{ management_ignore_names | default(omit) }}" |
| 32 | module_types: "{{ management_ignore_module_types | default(omit) }}" |
| 33 | bus_types: "{{ management_ignore_bus_types | default(omit) }}" |
| 34 | |
David K. Bainbridge | 8db2f30 | 2016-05-19 23:41:13 -0700 | [diff] [blame] | 35 | interfaces: |
alshabib | 54cdbb2 | 2016-06-03 16:37:01 -0700 | [diff] [blame] | 36 | fabric: "{{ fabric_iface | default('fabric') }}" |
David K. Bainbridge | e80fd39 | 2016-08-19 15:46:19 -0700 | [diff] [blame] | 37 | management: "{{ management_iface | default('mgmtbr') }}" |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 38 | external: "{{ external_iface | default(None) }}" |
| 39 | file: "{{ iface_file | default('/etc/network/interfaces') }}" |
David K. Bainbridge | 8db2f30 | 2016-05-19 23:41:13 -0700 | [diff] [blame] | 40 | addresses: |
| 41 | fabric: "{{ fabric_ip | mandatory }}" |
| 42 | management: "{{ management_ip | default('dhcp') }}" |
| 43 | external: "{{ external_ip | default('manual') }}" |
David K. Bainbridge | e80fd39 | 2016-08-19 15:46:19 -0700 | [diff] [blame] | 44 | gateway: |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 45 | external: "{{ external_gw | default(omit) }}" |
David K. Bainbridge | 603ee54 | 2016-10-04 21:11:05 -0700 | [diff] [blame] | 46 | management: "{{ management_gw | default(omit) }}" |
David K. Bainbridge | a677d4e | 2016-09-11 20:01:32 -0700 | [diff] [blame] | 47 | broadcast: |
| 48 | external: "{{ external_bc | default(omit) }}" |
David K. Bainbridge | 603ee54 | 2016-10-04 21:11:05 -0700 | [diff] [blame] | 49 | management: "{{ management_bc | default(omit) }}" |