makeNodeGroupStackName generates the name of the nodegroup stack identified by its name and this StackCollection's cluster.
(ngName string)
| 173 | |
| 174 | // makeNodeGroupStackName generates the name of the nodegroup stack identified by its name and this StackCollection's cluster. |
| 175 | func (c *StackCollection) makeNodeGroupStackName(ngName string) string { |
| 176 | return makeNodeGroupStackName(c.spec.Metadata.Name, ngName) |
| 177 | } |
| 178 | |
| 179 | func (c *StackCollection) createManagedNodeGroupTask(ctx context.Context, errorCh chan error, ng *api.ManagedNodeGroup, forceAddCNIPolicy bool, vpcImporter vpc.Importer) error { |
| 180 | name := c.makeNodeGroupStackName(ng.Name) |
no test coverage detected