58d8302b53
* Move buffer configuration to ConfigDB Signed-off-by: Andriy Moroz <c_andriym@mellanox.com> * Converted Dell and Arista configs Signed-off-by: Andriy Moroz <c_andriym@mellanox.com> * Add buffer configs for ACS-MSN2740 Signed-off-by: Andriy Moroz <c_andriym@mellanox.com> * Updated buffers template Signed-off-by: Andriy Moroz <c_andriym@mellanox.com> * Fixed j2 unit test Signed-off-by: Andriy Moroz <c_andriym@mellanox.com> * Update buffers config for Force10-S6100 Signed-off-by: Andriy Moroz <c_andriym@mellanox.com> * Update VS docker to support speed and buffers test Signed-off-by: Andriy Moroz <c_andriym@mellanox.com> * Update buffers config generation - fixed support of sonic-to-sonic install Signed-off-by: Andriy Moroz <c_andriym@mellanox.com> * Update submodules pointers for buffers config Signed-off-by: Andriy Moroz <c_andriym@mellanox.com>
21 lines
489 B
Django/Jinja
21 lines
489 B
Django/Jinja
[
|
|
{% set ports_with_speed_set=[] %}
|
|
{% if PORT %}
|
|
{% for port in PORT %}
|
|
{% if PORT[port].has_key('speed') %}
|
|
{%- if ports_with_speed_set.append(port) -%}{%- endif -%}
|
|
{%- endif -%}
|
|
{% endfor %}
|
|
{% for port in ports_with_speed_set %}
|
|
{
|
|
"PORT_TABLE:{{ port }}": {
|
|
"speed": "{{ PORT[port]['speed'] }}",
|
|
"description": "{{ PORT[port]['description'] }}"
|
|
},
|
|
"OP": "SET"
|
|
}{% if not loop.last %},{% endif %}
|
|
|
|
{% endfor %}
|
|
{% endif %}
|
|
]
|