mirror of https://github.com/kubernetes/kops.git
AWS IAM Role listing: don't ignore "other" errors
If the error was an AWS error, but not one of the recognized ones, we ignored it.
This commit is contained in:
parent
8b83dedf24
commit
90a484f049
|
@ -2012,10 +2012,9 @@ func ListIAMRoles(cloud fi.Cloud, clusterName string) ([]*resources.Resource, er
|
|||
klog.Warningf("could not find instance profile %q. Resource may already have been deleted: %v", name, awserror)
|
||||
continue
|
||||
}
|
||||
} else {
|
||||
getRoleErr = fmt.Errorf("calling IAM GetRole on %s: %w", name, err)
|
||||
return false
|
||||
}
|
||||
getRoleErr = fmt.Errorf("calling IAM GetRole on %s: %w", name, err)
|
||||
return false
|
||||
}
|
||||
for _, tag := range roleOutput.Role.Tags {
|
||||
if fi.StringValue(tag.Key) == ownershipTag && fi.StringValue(tag.Value) == "owned" {
|
||||
|
|
Loading…
Reference in New Issue