Jonathan Hart | 93956f5 | 2017-08-22 13:12:42 -0700 | [diff] [blame^] | 1 | |
| 2 | {# |
| 3 | Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | #} |
| 17 | |
| 18 | |
David K. Bainbridge | 8b17904 | 2016-11-30 15:38:42 -0800 | [diff] [blame] | 19 | {% if compute_node.password is defined and compute_node.password != omit %} |
| 20 | password_compute_node: '{{ compute_node.password }}' |
| 21 | {% endif %} |
David K. Bainbridge | 603ee54 | 2016-10-04 21:11:05 -0700 | [diff] [blame] | 22 | {% if compute_node.fabric.include.names is defined and compute_node.fabric.include.names != omit %} |
| 23 | fabric_include_names: '{{ compute_node.fabric.include.names }}' |
| 24 | {% endif %} |
| 25 | {% if compute_node.fabric.include.module_types is defined and compute_node.fabric.include.module_types != omit %} |
| 26 | fabric_include_module_types: '{{ compute_node.fabric.include.module_types }}' |
| 27 | {% endif %} |
| 28 | {% if compute_node.fabric.include.bus_types is defined and compute_node.fabric.include.bus_types != omit %} |
| 29 | fabric_include_bus_types: '{{ compute_node.fabric.include.bus_types }}' |
| 30 | {% endif %} |
| 31 | {% if compute_node.fabric.exclude.names is defined and compute_node.fabric.exclude.names != omit %} |
| 32 | fabric_exclude_names: '{{ compute_node.fabric.exclude.names }}' |
| 33 | {% endif %} |
| 34 | {% if compute_node.fabric.exclude.module_types is defined and compute_node.fabric.exclude.module_types != omit %} |
| 35 | fabric_exclude_module_types: '{{ compute_node.fabric.exclude.module_types }}' |
| 36 | {% endif %} |
| 37 | {% if compute_node.fabric.exclude.bus_types is defined and compute_node.fabric.exclude.bus_types != omit %} |
| 38 | fabric_exclude_bus_types: '{{ compute_node.fabric.exclude.bus_types }}' |
| 39 | {% endif %} |
| 40 | {% if compute_node.fabric.ignore.names is defined and compute_node.fabric.ignore.names != omit %} |
| 41 | fabric_ignore_names: '{{ compute_node.fabric.ignore.names }}' |
| 42 | {% endif %} |
| 43 | {% if compute_node.fabric.ignore.module_types is defined and compute_node.fabric.ignore.module_types != omit %} |
| 44 | fabric_ignore_module_types: '{{ compute_node.fabric.ignore.module_types }}' |
| 45 | {% endif %} |
| 46 | {% if compute_node.fabric.ignore.bus_types is defined and compute_node.fabric.ignore.bus_types != omit %} |
| 47 | fabric_ignore_bus_types: '{{ compute_node.fabric.ignore.bus_types }}' |
| 48 | {% endif %} |
| 49 | {% if compute_node.management.include.names is defined and compute_node.management.include.names != omit %} |
| 50 | management_include_names: '{{ compute_node.management.include.names }}' |
| 51 | {% endif %} |
| 52 | {% if compute_node.management.include.module_types is defined and compute_node.management.include.module_types != omit %} |
| 53 | management_include_module_types: '{{ compute_node.management.include.module_types }}' |
| 54 | {% endif %} |
| 55 | {% if compute_node.management.include.bus_types is defined and compute_node.management.include.bus_types != omit %} |
| 56 | management_include_bus_types: '{{ compute_node.management.include.bus_types }}' |
| 57 | {% endif %} |
| 58 | {% if compute_node.management.exclude.names is defined and compute_node.management.exclude.names != omit %} |
| 59 | management_exclude_names: '{{ compute_node.management.exclude.names }}' |
| 60 | {% endif %} |
| 61 | {% if compute_node.management.exclude.module_types is defined and compute_node.management.exclude.module_types != omit %} |
| 62 | management_exclude_module_types: '{{ compute_node.management.exclude.module_types }}' |
| 63 | {% endif %} |
| 64 | {% if compute_node.management.exclude.bus_types is defined and compute_node.management.exclude.bus_types != omit %} |
| 65 | management_exclude_bus_types: '{{ compute_node.management.exclude.bus_types }}' |
| 66 | {% endif %} |
| 67 | {% if compute_node.management.ignore.names is defined and compute_node.management.ignore.names != omit %} |
| 68 | management_ignore_names: '{{ compute_node.management.ignore.names }}' |
| 69 | {% endif %} |
| 70 | {% if compute_node.management.ignore.module_types is defined and compute_node.management.ignore.module_types != omit %} |
| 71 | management_ignore_module_types: '{{ compute_node.management.ignore.module_types }}' |
| 72 | {% endif %} |
| 73 | {% if compute_node.management.ignore.bus_types is defined and compute_node.management.ignore.bus_types != omit %} |
| 74 | management_ignore_bus_types: '{{ compute_node.management.ignore.bus_types }}' |
| 75 | {% endif %} |
David K. Bainbridge | ca68f06 | 2016-10-27 11:04:33 -0700 | [diff] [blame] | 76 | {% if ubuntu_apt_repo is defined %} |
| 77 | ubuntu_apt_repo: '{{ ubuntu_apt_repo }}' |
| 78 | {% endif %} |
| 79 | {% if ubuntu_updates_apt_repo is defined %} |
| 80 | ubuntu_updates_apt_repo: '{{ ubuntu_updates_apt_repo }}' |
| 81 | {% endif %} |
| 82 | {% if docker_apt_repo is defined %} |
| 83 | docker_apt_repo: '{{ docker_apt_repo }}' |
| 84 | {% endif %} |
| 85 | {% if java_apt_repo is defined %} |
| 86 | java_apt_repo: '{{ java_apt_repo }}' |
| 87 | {% endif %} |
| 88 | {% if ansible_apt_repo is defined %} |
| 89 | ansible_apt_repo: '{{ ansible_apt_repo }}' |
| 90 | {% endif %} |
| 91 | {% if maas_apt_repo is defined %} |
| 92 | maas_apt_repo: '{{ maas_apt_repo }}' |
| 93 | {% endif %} |
| 94 | {% if dell_apt_repo is defined %} |
| 95 | dell_apt_repo: '{{ dell_apt_repo }}' |
| 96 | {% endif %} |
| 97 | {% if juju_apt_repo is defined %} |
| 98 | juju_apt_repo: '{{ juju_apt_repo }}' |
| 99 | {% endif %} |