123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- ---
- - name: Get MTU of mgmt5
- hosts: infiniband
- gather_facts: no
- connection: local
- vars_files:
- - test_vars/test_infiniband_vars.yml
- tasks:
- - name: Set credentials and variables
- set_fact:
- username: "{{ username }}"
- password: "{{ password }}"
- filtered_dict: {}
- no_log: true
- tags: reboot,mtu
- - name: Authenticate
- block:
- - name: Authenticate to switch- "{{ inventory_hostname }}"
- uri:
- url: http://{{ inventory_hostname }}/admin/launch?script=rh&template=login&action=login
- method: POST
- body_format: form-urlencoded
- body:
- f_user_id: "{{ username }}"
- f_password: "{{ password }}"
- enter: Sign in
- status_code: 302
- register: login
- no_log: true
-
- - name: Verify authentication status
- fail:
- msg: "Authentication failed"
- when: login.set_cookie is undefined
- rescue:
- - name: Filtered response creation
- set_fact:
- filtered_dict: "{{filtered_dict |combine({item.key: item.value})}}"
- when: item.key not in 'invocation'
- with_dict: "{{ login }}"
- no_log: true
- - name: Authentication failure response
- fail:
- msg: "{{ filtered_dict }}"
- tags: reboot,mtu
- - name: get MTU from ib {{ validation_port }}
- uri:
- url: http://{{ inventory_hostname }}/admin/launch?script=json
- method: POST
- body_format: json
- headers:
- Cookie: "{{ login.set_cookie.split(';')[0] }}"
- body:
- {
- "commands":
- [
- "show interfaces ib {{ validation_port }}"
- ]
- }
- return_content: yes
- register: value
- tags: mtu
- - name: print reistered o/p
- debug:
- msg: "{{ value }}"
- tags: mtu
- - name: reboot IB switch
- uri:
- url: http://{{ inventory_hostname }}/admin/launch?script=json
- method: POST
- body_format: json
- headers:
- Cookie: "{{ login.set_cookie.split(';')[0] }}"
- body:
- {
- "commands":
- [
- "reload"
- ]
- }
- return_content: yes
- tags: reboot
|