You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Role eos-config-deploy-cvp is only supporting Fabric creation. In some use cases, it might be interesting to reset fabric from CVP and move EOS devices to ZTP mode.
Role should allow an option to choose whether we want to build or cleanup CVP.
- name: Configuration deployment with CVPhosts: CVPconnection: localgather_facts: notasks:
- name: run CVP provisioningimport_role:
name: eos-config-deploy-cvpvars:
state: {{present|absent}} # present is default value
The text was updated successfully, but these errors were encountered:
Implement multiple input variables to make role more granular:
```yaml
device_filter: 'all'
container_root: '{{ fabric_name }}'
configlets_prefix: 'AVD-{{ fabric_name }}-'
```
A new var is also available to select either creation/update or deletion
```yaml
state: absent
```
All variables defined in this role have a default value:
# Filter to apply on cv_device to target only devices involved in Fabricdevice_filter: 'all'# Define inventory group to consider root of container topologycontainer_root: '{{ fabric_name }}'# Configure prefix to append to configlets on CloudVisionconfiglets_prefix: 'AVD-{{ fabric_name }}-'# State management to know if module should create/update or delete fabricstate: 'present'
Role
eos-config-deploy-cvp
is only supporting Fabric creation. In some use cases, it might be interesting to reset fabric from CVP and move EOS devices to ZTP mode.Role should allow an option to choose whether we want to build or cleanup CVP.
The text was updated successfully, but these errors were encountered: