UpdateNodeGroupStack updates the nodegroup stack with the specified template
(ctx context.Context, nodeGroupName, template string, wait bool)
| 432 | |
| 433 | // UpdateNodeGroupStack updates the nodegroup stack with the specified template |
| 434 | func (c *StackCollection) UpdateNodeGroupStack(ctx context.Context, nodeGroupName, template string, wait bool) error { |
| 435 | stackName := c.makeNodeGroupStackName(nodeGroupName) |
| 436 | return c.UpdateStack(ctx, UpdateStackOptions{ |
| 437 | StackName: stackName, |
| 438 | ChangeSetName: c.MakeChangeSetName("update-nodegroup"), |
| 439 | Description: "updating nodegroup stack", |
| 440 | TemplateData: TemplateBody(template), |
| 441 | Wait: wait, |
| 442 | }) |
| 443 | } |
| 444 | |
| 445 | // ListStacksMatching gets all of CloudFormation stacks with names matching nameRegex. |
| 446 | func (c *StackCollection) ListStacksMatching(ctx context.Context, nameRegex string, statusFilters ...types.StackStatus) ([]*Stack, error) { |
nothing calls this directly
no test coverage detected