Skip to content

Commit

Permalink
Adjust todo priorities
Browse files Browse the repository at this point in the history
  • Loading branch information
errordeveloper committed Jun 5, 2018
1 parent b95743d commit 721c1bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/eks/eks.go
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ func (c *CloudFormation) CreateControlPlane() error {
RoleArn: &c.cfg.clusterRoleARN,
Subnets: aws.StringSlice(strings.Split(c.cfg.subnetsList, ",")),
SecurityGroups: aws.StringSlice([]string{c.cfg.securityGroup}),
// TODO(p0): find out why there are not tags
// TODO(p1): find out why there are not tags
}
output, err := c.eks.CreateCluster(input)
if err != nil {
@@ -124,7 +124,7 @@ func (c *CloudFormation) ListClusters() error {
return c.doListCluster(&c.cfg.ClusterName)
}

// TODO(p0): collect results into a data structure (or at least a nicely formatted string)
// TODO(p1): collect results into a data structure (or at least a nicely formatted string)
// TODO(p2): paging
input := &eks.ListClustersInput{}
output, err := c.eks.ListClusters(input)

0 comments on commit 721c1bd

Please sign in to comment.