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

[FEATURE]: Create MCM Group #450

Open
TrevorSquillario opened this issue Oct 27, 2022 · 1 comment
Open

[FEATURE]: Create MCM Group #450

TrevorSquillario opened this issue Oct 27, 2022 · 1 comment
Labels
area/ome-modular OME-Modular modules type/feature-request New feature or request

Comments

@TrevorSquillario
Copy link
Contributor

We need a new module ome_mcm_group to create an MCM Group with multiple chassis.

Required parameters:

  • name: MCM Group Name
  • backup_chassis: Service Tag of Backup Chassis
  • vip_ipv4_address: VIP IPv4 Address (Optional)
  • vip_subnet: VIP Subnet (Optional)
  • vip_gateway: VIP Gateway (Optional)

If vip_ipv4_address not specified do not create VIP.

@TrevorSquillario TrevorSquillario added needs-triage Issue requires triage. type/feature-request New feature or request labels Oct 27, 2022
@anupamaloke anupamaloke added area/ome-modular OME-Modular modules and removed needs-triage Issue requires triage. labels May 12, 2023
@an0wak
Copy link

an0wak commented Jun 4, 2023

I currently use the following python script to create a group within ansible. Maybe it can be migrated into ansible?
https://github.com/dell/OpenManage-Enterprise/blob/main/Python/new_mcm_group.py

---
- hosts: omem 
  connection: local
  name: Dell OpenManage Ansible - Python Script Create Chassis Group.
  gather_facts: false

  tasks:

   - name: Python Script - Run create new MCM group
     script: new_mcm_group_vip.py --ip {{ ome_ipaddress }} --user {{ ome_username }} --password {{ ome_password }} --groupname {{ cmc_global_info.group_name }} **--vip {{ cmc_global_info.virtual_ip }}**
     args:
       executable: python3
     register: script_result

   - debug: 
       var: script_result

Note: --vip does not exist in the git online code - this is a modification I made to the script.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/ome-modular OME-Modular modules type/feature-request New feature or request
Development

No branches or pull requests

3 participants