Jakub Trávník

Results 19 issues of Jakub Trávník

Renamed and updated following to support both Spines and Leaves: - aci_fabric_spine_switch_profile.py to **aci_fabric_switch_profile**.py - aci_fabric_spine_switch_assoc.py to **aci_fabric_switch_association**.py Updated integration tests accordingly also including **aci_fabric_switch_block** module tests to include leaf...

##### SUMMARY Idempotency fix for vmware_guest module, network part specifically Fixes #498 ##### ISSUE TYPE - Bugfix Pull Request ##### COMPONENT NAME vmware_guest module

Generating day0 config(s) for new nodes and overwriting of existing node config(s) via present state. ## Examples: ```yaml - name: Create New Nodes cisco.cml.cml_node: name: "{{ item.hostname }}" node_definition: "{{...

1) I have optimized the wait to use native node methods argument wait (just cleanup) 2) I have done following changes to the behavior of state changes: state | current...

cml_node module has an absent state option which was not implemented to make this idempotent compared to state changes (started, stopped, wiped) this state also makes sure node is stopped...

Provides check_mode support for both cml_lab and cml_node modules so changed status is returned without actual change happening. Fixes issue https://github.com/CiscoDevNet/ansible-cml/issues/42

Implements usage of X and Y coordinates for nodes which makes it possible to place nodes at specific coordinates or update placement of existing nodes. The behavior implemented is only...

Without this when we create nodes and not start them we cannot create links as nodes do not have any interfaces pre-created. It uses existing parameter in Lab.create_node() as visible...

cml_node module has following params defined, but they are not used. https://github.com/CiscoDevNet/ansible-cml/blob/716c622c6abd7dbb929764e627ea24e780fc4108/plugins/modules/cml_node.py#L70-L84 The bahvior should be probably for coordinates: - absent: does not matter - present: a) if specified: make...

supports_check_mode is true for these modules, but there is no change in behavior for them based on this bool flag https://github.com/CiscoDevNet/ansible-cml/blob/716c622c6abd7dbb929764e627ea24e780fc4108/plugins/modules/cml_node.py#L141-L144 https://github.com/CiscoDevNet/ansible-cml/blob/716c622c6abd7dbb929764e627ea24e780fc4108/plugins/modules/cml_lab.py#L126-L129 Performing changes with check_mode set to True thus...