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
Using the default variables, the arista.avd.eos_config_deploy_cvp role will create the following configlet name:
AVD-{{ fabric_name }}-_{{ hostname }}
eos_config_deploy_cvp
We see the default config_prefix in ansible_collections/arista/avd/roles/eos_config_deploy_cvp/defaults/main/main.yml is:
configlets_prefix: 'AVD-{{ fabric_name }}-'
But in ansible_collections/arista/avd/roles/eos_config_deploy_cvp/templates/cvp-devices-v3.j2 we see this structure
configlets: ... - {{ configlets_prefix }}_{{ device }} {% endif %}
I suspect this is what is causing the concatenation.
Change the default value for configlets_prefix to be 'AVD_{{ fabric_name }}'
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Enhancement summary
Using the default variables, the arista.avd.eos_config_deploy_cvp role will create the following configlet name:
AVD-{{ fabric_name }}-_{{ hostname }}
Which component of AVD is impacted
eos_config_deploy_cvp
Use case example
We see the default config_prefix in ansible_collections/arista/avd/roles/eos_config_deploy_cvp/defaults/main/main.yml is:
configlets_prefix: 'AVD-{{ fabric_name }}-'
But in ansible_collections/arista/avd/roles/eos_config_deploy_cvp/templates/cvp-devices-v3.j2 we see this structure
I suspect this is what is causing the concatenation.
Describe the solution you would like
Change the default value for configlets_prefix to be 'AVD_{{ fabric_name }}'
Describe alternatives you have considered
No response
Additional context
No response
Contributing Guide
The text was updated successfully, but these errors were encountered: