Skip to content

Commit

Permalink
Create control first
Browse files Browse the repository at this point in the history
  • Loading branch information
errordeveloper committed Jun 5, 2018
1 parent 20e9f09 commit 76b4a52
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/eks/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ func (c *ClusterProvider) CreateCluster(taskErrs chan error) {
"createStackVPC": func(errs chan error) error { return c.createStackVPC(errs) },
}, taskErrs)
c.runCreateTask(map[string]func(chan error) error{
"createControlPlane": func(errs chan error) error { return c.createControlPlane(errs) },
"createControlPlane": func(errs chan error) error { return c.createControlPlane(errs) },
}, taskErrs)
c.runCreateTask(map[string]func(chan error) error{
"createStackDefaultNodeGroup": func(errs chan error) error { return c.createStackDefaultNodeGroup(errs) },
}, taskErrs)
close(taskErrs)
Expand Down

0 comments on commit 76b4a52

Please sign in to comment.