From e5952bb7cc2ebd928fbd7e1a5eea16799c6e4f49 Mon Sep 17 00:00:00 2001 From: Ciprian Hacman Date: Tue, 12 May 2026 16:40:09 +0300 Subject: [PATCH] azure: list VMSS NICs in protokube gossip seed discovery --- protokube/pkg/gossip/azure/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protokube/pkg/gossip/azure/client.go b/protokube/pkg/gossip/azure/client.go index fe8d59abce2c6..1904b48429034 100644 --- a/protokube/pkg/gossip/azure/client.go +++ b/protokube/pkg/gossip/azure/client.go @@ -146,7 +146,7 @@ func (c *Client) ListVMScaleSets(ctx context.Context) ([]*compute.VirtualMachine // ListVMSSNetworkInterfaces returns the interfaces that the specified VM ScaleSet has. func (c *Client) ListVMSSNetworkInterfaces(ctx context.Context, vmScaleSetName string) ([]*network.Interface, error) { var l []*network.Interface - pager := c.interfacesClient.NewListPager(c.resourceGroupName(), nil) + pager := c.interfacesClient.NewListVirtualMachineScaleSetNetworkInterfacesPager(c.resourceGroupName(), vmScaleSetName, nil) for pager.More() { resp, err := pager.NextPage(ctx) if err != nil {