Skip to content
Snippets Groups Projects
Commit 75e02d51 authored by Mark Goddard's avatar Mark Goddard
Browse files

Allow compute nodes being discovered to be limited

parent 50ae62d5
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
- name: Ensure compute nodes are present in the Ansible inventory - name: Ensure compute nodes are present in the Ansible inventory
hosts: config-mgmt hosts: config-mgmt
gather_facts: no gather_facts: no
vars:
# Set this to a colon-separated list of compute node hostnames on which to
# trigger discovery. If unset, all compute nodes will be triggered.
compute_node_limit:
compute_node_limit_list: "{{ compute_node_limit.split(':') }}"
tasks: tasks:
- name: Add hosts for the compute nodes - name: Add hosts for the compute nodes
add_host: add_host:
...@@ -12,6 +17,7 @@ ...@@ -12,6 +17,7 @@
when: when:
- "{{ item.key not in groups['all'] }}" - "{{ item.key not in groups['all'] }}"
- "{{ item.key | replace('-idrac', '') not in groups['all'] }}" - "{{ item.key | replace('-idrac', '') not in groups['all'] }}"
- "{{ not compute_node_limit or item.key | replace('-idrac', '') in compute_node_limit_list }}"
run_once: True run_once: True
- name: Ensure compute nodes are PXE booted - name: Ensure compute nodes are PXE booted
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment