free and totals in labels

This commit is contained in:
Josh Patterson
2025-02-16 02:23:11 -05:00
parent 6ff701bd5c
commit 0d335e3056
2 changed files with 45 additions and 15 deletions

View File

@@ -2,32 +2,32 @@ hypervisor:
hosts:
defaultHost:
title: defaultHost
description: 'Available CPU: CPUFREE | Available Memory: MEMFREE | Available Disk: DISKFREE | Available Copper NIC: COPPERFREE | Available SFP NIC: SFPFREE'
description: "Available CPU: CPUFREE | Available Memory: MEMFREE | Available Disk: DISKFREE | Available Copper NIC: COPPERFREE | Available SFP NIC: SFPFREE"
syntax: json
uiElements:
- field: hostname
label: Enter the hostname
label: "Enter the hostname"
- field: role
label: sensor or searchnode
label: "sensor or searchnode"
- field: network_mode
label: Choose static4 or dhcp4. If static4, populate IP details below.
label: "Choose static4 or dhcp4. If static4, populate IP details below."
- field: ip4
label: IP Address with netmask. ex. 192.168.1.10/24
label: "IP Address with netmask. ex. 192.168.1.10/24"
- field: gw4
label: Gateway
label: "Gateway"
- field: dns4
label: DNS. Comma separated list. ex. 192.168.1.1,8.8.8.8
label: "DNS. Comma separated list. ex. 192.168.1.1,8.8.8.8"
- field: search4
label: Search domain
label: "Search domain"
- field: cpu
label: Number of CPU cores to assign. ex. 8
label: "CPU cores to assign. Free: FREE | Total: TOTAL"
- field: memory
label: Memory, in GB to assign. ex. 16
label: "Memory to assign, in GB. Free: FREE | Total: TOTAL"
- field: disk
label: Choose a disk or disks to assign for passthrough. Comma separated list.
label: "Disk(s) for passthrough. Comma separated list. Free: FREE | Total: TOTAL"
- field: copper
label: Choose a copper port or ports to assign for passthrough. Comma separated list.
label: "Copper port(s) for passthrough. Comma separated list. Free: FREE | Total: TOTAL"
- field: sfp
label: Choose a sfp port or ports to assign for passthrough. Comma separated list.
label: "SFP port(s) for passthrough. Comma separated list. Free: FREE | Total: TOTAL"
file: true
global: true

View File

@@ -11,6 +11,11 @@
| replace('SFPFREE', sfp_free | string) -}}
{%- endmacro -%}
{%- macro update_label(label, total, free) -%}
{{- label | replace('TOTAL', total | string)
| replace('FREE', free | string) -}}
{%- endmacro -%}
{%- macro get_available_pci(hw_config, device_type, used_indices) -%}
{%- set available = [] -%}
{%- for idx in hw_config.get(device_type, {}).keys() -%}
@@ -29,7 +34,7 @@
{# Calculate used CPU and memory #}
{%- set used_cpu = 0 -%}
{%- set used_memory = 0 -%}
{%- set ns = namespace(used_cpu=0, used_memory=0) -%} #MOD
{%- set ns = namespace(used_cpu=0, used_memory=0) -%}
{%- for hostname, vm_data in vms.items() -%}
{%- set vm_config = vm_data.config -%}
{%- set ns.used_cpu = ns.used_cpu + vm_config.cpu | int -%}
@@ -55,8 +60,33 @@
{%- set disk_free = get_available_pci(hw_config, 'disk', used_disk) -%}
{%- set copper_free = get_available_pci(hw_config, 'copper', used_copper) -%}
{%- set sfp_free = get_available_pci(hw_config, 'sfp', used_sfp) -%}
{# Get total resources #}
{%- set cpu_total = hw_config.cpu -%}
{%- set mem_total = hw_config.memory -%}
{%- set disk_total = hw_config.disk.keys() | join(',') -%}
{%- set copper_total = hw_config.copper.keys() | join(',') -%}
{%- set sfp_total = hw_config.sfp.keys() | join(',') -%}
{# Update field labels with total and free values #}
{%- set updated_template = TEMPLATE.copy() -%}
{%- set updated_elements = [] -%}
{%- for field in updated_template.uiElements -%}
{%- set updated_field = field.copy() -%}
{%- if field.field == 'cpu' -%}
{%- do updated_field.update({'label': field.label | replace('FREE', cpu_free | string) | replace('TOTAL', cpu_total | string)}) -%}
{%- elif field.field == 'memory' -%}
{%- do updated_field.update({'label': field.label | replace('FREE', mem_free | string) | replace('TOTAL', mem_total | string)}) -%}
{%- elif field.field == 'disk' -%}
{%- do updated_field.update({'label': field.label | replace('FREE', disk_free) | replace('TOTAL', disk_total)}) -%}
{%- elif field.field == 'copper' -%}
{%- do updated_field.update({'label': field.label | replace('FREE', copper_free) | replace('TOTAL', copper_total)}) -%}
{%- elif field.field == 'sfp' -%}
{%- do updated_field.update({'label': field.label | replace('FREE', sfp_free) | replace('TOTAL', sfp_total)}) -%}
{%- endif -%}
{%- do updated_elements.append(updated_field) -%}
{%- endfor -%}
{%- do updated_template.update({'uiElements': updated_elements}) -%}
{%- do updated_template.update({
'title': hypervisor,
'description': update_description(