mirror of https://github.com/kubernetes/kops.git
Merge pull request #6769 from alrs/pkg-dropped-errors
pkg/model: Fix dropped error
This commit is contained in:
commit
ca7563d719
|
|
@ -77,6 +77,9 @@ func (b *IAMModelBuilder) Build(c *fi.ModelBuilderContext) error {
|
|||
return fmt.Errorf("unable to parse instance profile name from arn %q: %v", profileARN, err)
|
||||
}
|
||||
err = b.buildIAMTasks(igRole, iamName, c, true)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
// Generate IAM tasks for each managed role
|
||||
|
|
|
|||
Loading…
Reference in New Issue