Holorouter Version
9.1
VCF Version
VCF 9.1
Target Type
Standalone ESX Host
Describe the bug
vi /root/.local/share/powershell/Modules/HoloDeck/Modules/SddcMgmtDeployment.psm1
search for => Each component has versions[], we need to extract bundle info from the first/latest version
$latestVersion = $component.versions[0] => $latestVersion = $component.versions[-1]
$component.versions[0] is first element in array, that is oldest patch
$component.versions[-1] is last element in array, that is newest patch
see also #141
Reproduction steps
Expected behavior
newest patch should be installed
Relevant logs
Additional context
No response
Holorouter Version
9.1
VCF Version
VCF 9.1
Target Type
Standalone ESX Host
Describe the bug
vi /root/.local/share/powershell/Modules/HoloDeck/Modules/SddcMgmtDeployment.psm1
search for => Each component has versions[], we need to extract bundle info from the first/latest version
$latestVersion = $component.versions[0] => $latestVersion = $component.versions[-1]
$component.versions[0] is first element in array, that is oldest patch
$component.versions[-1] is last element in array, that is newest patch
see also #141
Reproduction steps
Expected behavior
newest patch should be installed
Relevant logs
Additional context
No response