mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
netscaler module example playbook
This commit is contained in:
25
examples/playbooks/netscaler.yml
Normal file
25
examples/playbooks/netscaler.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
#
|
||||
# NetScaler module example
|
||||
#
|
||||
|
||||
- hosts: web-pool
|
||||
serial: 3
|
||||
vars:
|
||||
nsc_host: nsc.example.com
|
||||
nsc_user: admin
|
||||
nsc_pass: nimda
|
||||
# type of the netscaler object you want to manipulate
|
||||
type: service
|
||||
# netscaler object name
|
||||
name: ${facter_fqdn}:8080
|
||||
|
||||
tasks:
|
||||
- name: disable service in the lb
|
||||
action: netscaler nsc_host=${nsc_host} user=${nsc_user} password=${nsc_pass} name=${name} type=${type} action=disable
|
||||
|
||||
- name: deploy new code
|
||||
action: shell yum upgrade -y
|
||||
|
||||
- name: enable in the lb
|
||||
action: netscaler nsc_host=${nsc_host} user=${nsc_user} password=${nsc_pass} name=${name} type=${type} action=enable
|
||||
Reference in New Issue
Block a user