Merge "Add new tasks to os_port playbook"

This commit is contained in:
Jenkins 2016-05-30 14:35:15 +00:00 committed by Gerrit Code Review
commit 1c25357f18

View File

@ -60,6 +60,28 @@
state: absent
name: "{{ port_name }}"
- name: Create port (with allowed_address_pairs and extra_dhcp_opts)
os_port:
cloud: "{{ cloud }}"
state: present
name: "{{ port_name }}"
network: "{{ network_name }}"
no_security_groups: True
allowed_address_pairs:
- ip_address: 10.6.7.0/24
extra_dhcp_opts:
- opt_name: "bootfile-name"
opt_value: "testfile.1"
register: port
- debug: var=port
- name: Delete port (with allowed_address_pairs and extra_dhcp_opts)
os_port:
cloud: "{{ cloud }}"
state: absent
name: "{{ port_name }}"
- name: Delete security group
os_security_group:
cloud: "{{ cloud }}"