d8fe45b3d8
Having tagged plays allows us to easily run a subset of the plays for a command, and perform targeted operations with less risk of unintended consequences. The tags are typically named after the playbook, although some of the overcloud playbooks have been tagged without an overcloud- prefix.
14 lines
520 B
YAML
14 lines
520 B
YAML
---
|
|
# This playbook will configure a Bare Metal Provisioning (BMP) environment for
|
|
# Dell switches on the seed node so that they can be network booted.
|
|
|
|
- name: Ensure that a Bare Metal Provisioning (BMP) environment is configured for Dell switches on the seed
|
|
hosts: seed
|
|
tags:
|
|
- dell-switch-bmp
|
|
roles:
|
|
- role: dell-switch-bmp
|
|
# This is the Nginx web server on the seed node.
|
|
dell_switch_bmp_http_base_url: "http://{{ provision_oc_net_name | net_ip }}:8080"
|
|
when: dell_switch_bmp_images
|