Merge pull request #609 from princepereira/user/ppereira/hnsPortpoolAllocations

Adding more hns debugging log collection steps to collectlogs.ps1
This commit is contained in:
David Schott 2024-07-31 17:07:55 -05:00 коммит произвёл GitHub
Родитель dd4e8708ed ea43876f32
Коммит eb00de5db2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -79,6 +79,9 @@ else
@{Name="CompartmentID"; Expression={$_.NamespaceId}}, `
@{Name="CompartmentGuid"; Expression={$_.NamespaceGuid}}, `
Type, @{Name="EndpointID"; Expression={$_.Resources.Data.Id}} > namespaces.txt
# V2 HNS port pool allocations
(Invoke-HnsRequest -Type portpools -Method GET).PortPoolAllocations | ConvertTo-Json -Depth 10 > hnsportpoolallocs.txt
}
# Networks
@ -124,6 +127,9 @@ nmscrub -a -n -t > nmscrub.txt
nmbind > nmbind.txt
arp -a > arp.txt
$windowsServices = @("hns", "vfpext", "kubeproxy", "tcpip", "kubelet", "containerd", "docker")
Get-Service $windowsServices -ErrorAction SilentlyContinue > .\windowsServices.txt
sc.exe queryex > scqueryex.txt
sc.exe qc hns >> scqueryex.txt
sc.exe qc vfpext >> scqueryex.txt