{% for r in report.recommendations %} {{ r.deployment_name }} {{ r.current_cpu_request_fmt }} → {{ r.recommended_cpu_request_fmt }} {% if r.cpu_reduction_pct > 0 %} -{{ r.cpu_reduction_pct }}% {% elif r.cpu_reduction_pct < 0 %} +{{ (-r.cpu_reduction_pct)|round|int }}% {% else %} 0% {% endif %} {{ r.current_memory_request_fmt }} → {{ r.recommended_memory_request_fmt }} {% if r.memory_reduction_pct > 0 %} -{{ r.memory_reduction_pct }}% {% elif r.memory_reduction_pct < 0 %} +{{ (-r.memory_reduction_pct)|round|int }}% {% else %} 0% {% endif %} {{ r.strategy }} {{ r.confidence }} {% if patch_map and r.deployment_name in patch_map %} {% endif %} {% if patch_map and r.deployment_name in patch_map %}
{{ r.deployment_name }}-patch.yaml
{{ patch_map[r.deployment_name] }}
{% endif %} {% endfor %}