Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New module lxca_fanmuxes for Lenovo XClarity Administrator #49829

Closed
wants to merge 2 commits into from

Conversation

navalkp
Copy link
Contributor

@navalkp navalkp commented Dec 12, 2018

SUMMARY

This module provide an interface to Lenovo XClarity Administrator. This module provides information about fanmuxes

ISSUE TYPE
  • New Module Pull Request
COMPONENT NAME

lxca_fanmuxes

ADDITIONAL INFORMATION
Testing ansible module lxca_fanmuxes

1. list all fanmuxes
2. list fanmux with uuid
3. list fanmuxes with chassis uuid

(pylxca27) naval@osboxes:~/play/playbook/lxca_fanmuxes$ cat all_fanmuxes.yml 
---
- hosts: localhost
  connection: local
  tasks:
    - name: list fanmuxes
      lxca_fanmuxes:
        login_user: USERID
        login_password: CME44ibm
        auth_url: "https://10.243.9.238"
        command_options: fanmuxes
(pylxca27) naval@osboxes:~/play/playbook/lxca_fanmuxes$ ansible-playbook all_fanmuxes.yml 
 [WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all'


PLAY [localhost] *****************************************************************************************************************************

TASK [Gathering Facts] ***********************************************************************************************************************
ok: [localhost]

TASK [list fanmuxes] *************************************************************************************************************************
ok: [localhost]

PLAY RECAP ***********************************************************************************************************************************
localhost                  : ok=2    changed=0    unreachable=0    failed=0    skipped=0   

(pylxca27) naval@osboxes:~/play/playbook/lxca_fanmuxes$ cat filter_by_uuid.yml 
---
- hosts: localhost
  connection: local
  tasks:
    - name: list fanmuxes
      lxca_fanmuxes:
        login_user: USERID
        login_password: CME44ibm
        auth_url: "https://10.243.9.238"
        uuid: "7F5D3EA2320A11E1A9F8A03291DC1D72"
        command_options: fanmuxes_by_uuid
(pylxca27) naval@osboxes:~/play/playbook/lxca_fanmuxes$ ansible-playbook filter_by_uuid.yml 
 [WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all'


PLAY [localhost] *****************************************************************************************************************************

TASK [Gathering Facts] ***********************************************************************************************************************
ok: [localhost]

TASK [list fanmuxes] *************************************************************************************************************************
ok: [localhost]

PLAY RECAP ***********************************************************************************************************************************
localhost                  : ok=2    changed=0    unreachable=0    failed=0    skipped=0   

(pylxca27) naval@osboxes:~/play/playbook/lxca_fanmuxes$ cat filter_by_chassis_uuid.yml 
---
- hosts: localhost
  connection: local
  tasks:
    - name: list fanmuxes
      lxca_fanmuxes:
        login_user: USERID
        login_password: CME44ibm
        auth_url: "https://10.243.9.238"
        chassis: "9FFE022D2E2E11E1BD0EA8A7A12531B6"
        command_options: fanmuxes_by_chassis_uuid
(pylxca27) naval@osboxes:~/play/playbook/lxca_fanmuxes$ ansible-playbook filter_by_chassis_uuid.yml 
 [WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all'


PLAY [localhost] *****************************************************************************************************************************

TASK [Gathering Facts] ***********************************************************************************************************************
ok: [localhost]

TASK [list fanmuxes] *************************************************************************************************************************
ok: [localhost]

PLAY RECAP ***********************************************************************************************************************************
localhost                  : ok=2    changed=0    unreachable=0    failed=0    skipped=0   

@navalkp
Copy link
Contributor Author

navalkp commented Dec 12, 2018

bot_status

@ansibot
Copy link
Contributor

ansibot commented Dec 12, 2018

Components

lib/ansible/modules/remote_management/lxca/lxca_fanmuxes.py
support: community
maintainers:

test/units/modules/remote_management/lxca/test_lxca_fanmuxes.py
support: core
maintainers:

Metadata

waiting_on: ansible
changes_requested_by: null
needs_info: False
needs_revision: False
needs_rebase: False
merge_commits: []
too many files or commits: False
mergeable_state: clean
shippable_status: success
maintainer_shipits (module maintainers): 0
community_shipits (namespace maintainers): 1
ansible_shipits (core team members): 0
shipit_actors (maintainers or core team members): navalkp
shipit_actors_other: []
automerge: automerge shipit test failed

click here for bot help

@ansibot ansibot added affects_2.8 This issue/PR affects Ansible v2.8 core_review In order to be merged, this PR must follow the core review workflow. module This issue/PR relates to a module. needs_triage Needs a first human triage before being processed. new_module This PR includes a new module. new_plugin This PR includes a new plugin. remote_management Working Group: https://docs.ansible.com/ansible/latest/community/communication.html support:community This issue/PR relates to code supported by the Ansible community. support:core This issue/PR relates to code supported by the Ansible Engineering Team. labels Dec 12, 2018
@sivel sivel removed needs_triage Needs a first human triage before being processed. labels Dec 18, 2018
@ansibot ansibot added the stale_ci This PR has been tested by CI more than one week ago. Close and re-open this PR to get it retested. label Dec 27, 2018
@ansibot
Copy link
Contributor

ansibot commented Feb 21, 2019

@ansibot ansibot added collection Related to Ansible Collections work collection:community.general and removed support:community This issue/PR relates to code supported by the Ansible community. labels Apr 29, 2020
@Akasurde
Copy link
Member

Hi @navalkp, Thank you very much for your interest in Ansible. This plugin/module is no longer maintained in this repository and has been migrated to https://github.com/ansible-collections/community.general

If you have further questions please stop by IRC or the mailing list:

* IRC: #ansible on irc.freenode.net
* mailing list: https://groups.google.com/forum/#!forum/ansible-project

needs_info

@Akasurde Akasurde closed this Aug 20, 2020
@ansible ansible locked as resolved and limited conversation to collaborators Aug 20, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
affects_2.8 This issue/PR affects Ansible v2.8 collection:community.general collection Related to Ansible Collections work core_review In order to be merged, this PR must follow the core review workflow. module This issue/PR relates to a module. new_module This PR includes a new module. new_plugin This PR includes a new plugin. remote_management Working Group: https://docs.ansible.com/ansible/latest/community/communication.html stale_ci This PR has been tested by CI more than one week ago. Close and re-open this PR to get it retested. support:core This issue/PR relates to code supported by the Ansible Engineering Team.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants