-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Azure VMs Pool] Support mixed agentpool types in Azure Cache #6689
Merged
k8s-ci-robot
merged 6 commits into
kubernetes:cluster-autoscaler-release-1.29
from
wenxuan0923:wenx/add-vms-spec
Apr 12, 2024
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,7 @@ type azureCache struct { | |
// Cache content. | ||
resourceGroup string | ||
vmType string | ||
vmsPoolMap map[string]struct{} // track the nodepools that're vms pool | ||
scaleSets map[string]compute.VirtualMachineScaleSet | ||
virtualMachines map[string][]compute.VirtualMachine | ||
registeredNodeGroups []cloudprovider.NodeGroup | ||
|
@@ -67,6 +68,7 @@ func newAzureCache(client *azClient, cacheTTL time.Duration, resourceGroup, vmTy | |
refreshInterval: cacheTTL, | ||
resourceGroup: resourceGroup, | ||
vmType: vmType, | ||
vmsPoolMap: make(map[string]struct{}), | ||
scaleSets: make(map[string]compute.VirtualMachineScaleSet), | ||
virtualMachines: make(map[string][]compute.VirtualMachine), | ||
registeredNodeGroups: make([]cloudprovider.NodeGroup, 0), | ||
|
@@ -87,6 +89,13 @@ func newAzureCache(client *azClient, cacheTTL time.Duration, resourceGroup, vmTy | |
return cache, nil | ||
} | ||
|
||
func (m *azureCache) getVMsPoolMap() map[string]struct{} { | ||
m.mutex.Lock() | ||
defer m.mutex.Unlock() | ||
|
||
return m.vmsPoolMap | ||
} | ||
|
||
func (m *azureCache) getVirtualMachines() map[string][]compute.VirtualMachine { | ||
m.mutex.Lock() | ||
defer m.mutex.Unlock() | ||
|
@@ -165,54 +174,77 @@ func (m *azureCache) fetchAzureResources() error { | |
m.mutex.Lock() | ||
defer m.mutex.Unlock() | ||
|
||
switch m.vmType { | ||
case vmTypeVMSS: | ||
// List all VMSS in the RG. | ||
vmssResult, err := m.fetchScaleSets() | ||
if err == nil { | ||
m.scaleSets = vmssResult | ||
} else { | ||
return err | ||
} | ||
case vmTypeStandard: | ||
// List all VMs in the RG. | ||
vmResult, err := m.fetchVirtualMachines() | ||
if err == nil { | ||
m.virtualMachines = vmResult | ||
} else { | ||
return err | ||
} | ||
// fetch all the resources since CAS may be operating on mixed nodepools | ||
// including both VMSS and VMs pools | ||
vmssResult, err := m.fetchScaleSets() | ||
if err == nil { | ||
m.scaleSets = vmssResult | ||
} else { | ||
return err | ||
} | ||
|
||
vmResult, vmsPoolMap, err := m.fetchVirtualMachines() | ||
if err == nil { | ||
m.virtualMachines = vmResult | ||
m.vmsPoolMap = vmsPoolMap | ||
} else { | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
const ( | ||
agentpoolNameTag = "aks-managed-poolName" | ||
agentpoolTypeTag = "aks-managed-agentpool-type" | ||
vmsPoolType = "VirtualMachines" | ||
) | ||
|
||
// fetchVirtualMachines returns the updated list of virtual machines in the config resource group using the Azure API. | ||
func (m *azureCache) fetchVirtualMachines() (map[string][]compute.VirtualMachine, error) { | ||
func (m *azureCache) fetchVirtualMachines() (map[string][]compute.VirtualMachine, map[string]struct{}, error) { | ||
ctx, cancel := getContextWithCancel() | ||
defer cancel() | ||
|
||
result, err := m.azClient.virtualMachinesClient.List(ctx, m.resourceGroup) | ||
if err != nil { | ||
klog.Errorf("VirtualMachinesClient.List in resource group %q failed: %v", m.resourceGroup, err) | ||
return nil, err.Error() | ||
return nil, nil, err.Error() | ||
} | ||
|
||
instances := make(map[string][]compute.VirtualMachine) | ||
// track the nodepools that're vms pools | ||
vmsPoolMap := make(map[string]struct{}) | ||
for _, instance := range result { | ||
if instance.Tags == nil { | ||
continue | ||
} | ||
|
||
tags := instance.Tags | ||
vmPoolName := tags["poolName"] | ||
vmPoolName := tags[agentpoolNameTag] | ||
// fall back to legacy tag name if not found | ||
if vmPoolName == nil { | ||
vmPoolName = tags["poolName"] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can we add this as a const as well? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
} | ||
|
||
if vmPoolName == nil { | ||
continue | ||
} | ||
|
||
instances[to.String(vmPoolName)] = append(instances[to.String(vmPoolName)], instance) | ||
|
||
// if the nodepool is already in the map, skip it | ||
if _, ok := vmsPoolMap[to.String(vmPoolName)]; ok { | ||
continue | ||
} | ||
|
||
// nodes from vms pool will have tag "aks-managed-agentpool-type" set to "VirtualMachines" | ||
if agnetpoolType := tags[agentpoolTypeTag]; agnetpoolType != nil { | ||
if strings.EqualFold(to.String(agnetpoolType), vmsPoolType) { | ||
vmsPoolMap[to.String(vmPoolName)] = struct{}{} | ||
} | ||
} | ||
} | ||
return instances, nil | ||
return instances, vmsPoolMap, nil | ||
} | ||
|
||
// fetchScaleSets returns the updated list of scale sets in the config resource group using the Azure API. | ||
|
@@ -323,6 +355,7 @@ func (m *azureCache) getAutoscalingOptions(ref azureRef) map[string]string { | |
|
||
// FindForInstance returns node group of the given Instance | ||
func (m *azureCache) FindForInstance(instance *azureRef, vmType string) (cloudprovider.NodeGroup, error) { | ||
vmsPoolMap := m.getVMsPoolMap() | ||
m.mutex.Lock() | ||
defer m.mutex.Unlock() | ||
|
||
|
@@ -340,7 +373,8 @@ func (m *azureCache) FindForInstance(instance *azureRef, vmType string) (cloudpr | |
return nil, nil | ||
} | ||
|
||
if vmType == vmTypeVMSS { | ||
// cluster with vmss pool only | ||
if vmType == vmTypeVMSS && len(vmsPoolMap) == 0 { | ||
if m.areAllScaleSetsUniform() { | ||
// Omit virtual machines not managed by vmss only in case of uniform scale set. | ||
if ok := virtualMachineRE.Match([]byte(inst.Name)); ok { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we have a more defined type as opposed to just using struct? VMpools? I observe that we have defined this inside azure_vm_pool.go
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This
map[string]struct{}
is just being used as set here, since golang doesn't haveset
data structure. It is a common pattern as you can see many of such usage in rp code base.The purpose is only to be able to find out if an agentpool is vms pool, given its name, so we don't need to use any specific data type here.
We are setting value like this:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/go.mod#L40 api machinery should have sets iirc you can use.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Bryce, the
Set
in apimachinery is also a map, so I don't think it's necessary:There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All go implementations of set will use map[T]EmptyStruct for zero bytes.
https://pkg.go.dev/k8s.io/apimachinery/pkg/util/sets#Set is the location of the set package though that works with all types. Set in pkg/fields isn't one i have heard of before.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rename the field to vmsPoolSet to make it much more clearer?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Renamed