We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90bccb0 commit e988297Copy full SHA for e988297
cluster-autoscaler/cloudprovider/azure/azure_manager.go
@@ -169,6 +169,9 @@ func (m *AzureManager) Refresh() error {
169
}
170
171
func (m *AzureManager) forceRefresh() error {
172
+ if err := m.fetchAutoNodeGroups(); err != nil {
173
+ klog.Errorf("Failed to fetch autodiscovered nodegroups: %v", err)
174
+ }
175
if err := m.azureCache.regenerate(); err != nil {
176
klog.Errorf("Failed to regenerate Azure cache: %v", err)
177
return err
0 commit comments