3e909014f9
vs has components from swss, bgp, teamd and nat. This table is needed by this change https://github.com/Azure/sonic-utilities/pull/1554. Because Azure/sonic-utilities#1554 requires "config warm_restart enable FEATURE" and the FEATURE has to be in feature table. Signed-off-by: Stepan Blyschak <stepanb@nvidia.com>
18 lines
384 B
Django/Jinja
18 lines
384 B
Django/Jinja
{
|
|
"DEVICE_METADATA": {
|
|
"localhost": {
|
|
"mac": "{{ system_mac }}",
|
|
"buffer_model": "traditional"
|
|
}
|
|
},
|
|
{% set features = ["swss", "bgp", "teamd", "nat", "database"] %}
|
|
"FEATURE": {
|
|
{% for feature in features %}
|
|
"{{ feature }}": {
|
|
"state": "enabled"
|
|
}{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
}
|
|
}
|
|
|