fix regex and label for hypervisor annotation

This commit is contained in:
Josh Patterson
2025-04-30 13:10:49 -04:00
parent 5a8e542f96
commit 3a31d80a85

View File

@@ -31,22 +31,22 @@ hypervisor:
- static4 - static4
- dhcp4 - dhcp4
- field: ip4 - field: ip4
label: "IP Address with netmask. ex. 192.168.1.10/24" label: "IP address with netmask: 192.168.1.10/24 - If using dhcp, enter a character in this field and delete it. This will eliminate the incomplete/invalid setting entry error as well as the improperly formatted address error."
forcedType: string forcedType: string
regex: '^(\d{1,3}\.){3}\d{1,3}/\d{1,2}$' regex: "^$|^(\\d{1,3}\\.){3}\\d{1,3}/\\d{1,2}$"
regexFailureMessage: "Enter a properly formatted CIDR address" regexFailureMessage: "Enter a properly formatted CIDR address"
readonly: true readonly: true
- field: gw4 - field: gw4
label: "Gateway" label: "Gateway - If using dhcp, enter a character in this field and delete it. This will eliminate the incomplete/invalid setting entry error as well as the improperly formatted address error."
forcedType: string forcedType: string
regex: '^(\d{1,3}\.){3}\d{1,3}$' regex: "^$|^(\\d{1,3}\\.){3}\\d{1,3}$"
regexFailureMessage: "Enter a properly formatted IP address" regexFailureMessage: "Enter a properly formatted IP address"
readonly: true readonly: true
- field: dns4 - field: dns4
label: "DNS. Comma separated list. ex. 192.168.1.1,8.8.8.8" label: "Single DNS IP or comma separated list: 192.168.1.1,8.8.8.8 - If using dhcp, enter a character in this field and delete it. This will eliminate the incomplete/invalid setting entry error as well as the improperly formatted address error."
forcedType: string forcedType: string
regex: '^(\d{1,3}\.){3}\d{1,3}$' regex: "^$|^(\\d{1,3}\\.){3}\\d{1,3}(,\\s*(\\d{1,3}\\.){3}\\d{1,3})*$"
regexFailureMessage: "Enter a properly formatted IP address" regexFailureMessage: "Enter a properly formatted IP address or list of addresses"
readonly: true readonly: true
- field: search4 - field: search4
label: "Search domain" label: "Search domain"