-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from dsoper2/ip
Fixes #43 so that ipv6 is not required for ip pools and adds example …
- Loading branch information
Showing
4 changed files
with
75 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
--- | ||
# Example Playbook: cisco.ucs.ucs_ip_pool | ||
- hosts: ucs | ||
connection: local | ||
gather_facts: false | ||
|
||
tasks: | ||
- name: Test that we have a UCS hostname, UCS username, and UCS password | ||
fail: | ||
msg: 'Please define the following variables: ucs_hostname, ucs_username and ucs_password.' | ||
when: ucs_hostname is not defined or ucs_username is not defined or ucs_password is not defined | ||
vars: | ||
# use "<<: *login_info" to substite the information below in each task | ||
# this is not required, however it makes the playbook shorter. | ||
login_info: &login_info | ||
hostname: "{{ ucs_hostname }}" | ||
username: "{{ ucs_username }}" | ||
password: "{{ ucs_password }}" | ||
|
||
- name: Add UCS Organization | ||
cisco.ucs.ucs_org: | ||
<<: *login_info | ||
org_name: level1 | ||
parent_org_path: root | ||
description: level1 org | ||
state: present | ||
delegate_to: localhost | ||
|
||
- name: Configure IPv4 address pool | ||
cisco.ucs.ucs_ip_pool: | ||
<<: *login_info | ||
name: ext-mgmt | ||
org_dn: org-root/org-level1 | ||
description: CIMC IP Pool | ||
ipv4_blocks: | ||
- first_addr: 192.168.10.1 | ||
last_addr: 192.168.10.20 | ||
subnet_mask: 255.255.255.128 | ||
default_gw: 192.168.10.2 | ||
- first_addr: 192.168.11.1 | ||
last_addr: 192.168.11.20 | ||
subnet_mask: 255.255.255.128 | ||
default_gw: 192.168.11.2 | ||
delegate_to: localhost | ||
|
||
- name: Remove IPv4 address pool blocks | ||
cisco.ucs.ucs_ip_pool: | ||
<<: *login_info | ||
name: ext-mgmt | ||
org_dn: org-root/org-level1 | ||
ipv4_blocks: | ||
- first_addr: 192.168.10.1 | ||
last_addr: 192.168.10.20 | ||
state: absent | ||
delegate_to: localhost | ||
|
||
- name: Remove IPv4 address pool | ||
cisco.ucs.ucs_ip_pool: | ||
<<: *login_info | ||
name: ext-mgmt | ||
org_dn: org-root/org-level1 | ||
state: absent | ||
delegate_to: localhost | ||
|
||
- name: Remove UCS Organization | ||
cisco.ucs.ucs_org: | ||
<<: *login_info | ||
org_name: level1 | ||
parent_org_path: root | ||
state: absent | ||
delegate_to: localhost |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.