(ctx context.Context, clusterStackNames []string, clusterName string)
| 671 | } |
| 672 | |
| 673 | func (c *StackCollection) HasClusterStackFromList(ctx context.Context, clusterStackNames []string, clusterName string) (bool, error) { |
| 674 | stack, err := c.getClusterStackFromList(ctx, clusterStackNames, clusterName) |
| 675 | return stack != nil, err |
| 676 | } |
| 677 | |
| 678 | func (c *StackCollection) getClusterStackFromList(ctx context.Context, clusterStackNames []string, clusterName string) (*Stack, error) { |
| 679 | clusterStackName := c.MakeClusterStackName() |
nothing calls this directly
no test coverage detected