We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We need a new module ome_mcm_group to create an MCM Group with multiple chassis.
ome_mcm_group
Required parameters:
name
backup_chassis
vip_ipv4_address
vip_subnet
vip_gateway
If vip_ipv4_address not specified do not create VIP.
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
No branches or pull requests
We need a new module
ome_mcm_group
to create an MCM Group with multiple chassis.Required parameters:
name
: MCM Group Namebackup_chassis
: Service Tag of Backup Chassisvip_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.The text was updated successfully, but these errors were encountered: