Fix linter warnings

Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
Nicolas De Loof 2020-04-28 11:05:00 +02:00
parent 30029fa701
commit 4642bfa172
No known key found for this signature in database
GPG Key ID: 9858809D6F8F6E7E
4 changed files with 11 additions and 5 deletions

View File

@ -117,7 +117,7 @@ func (c client) GetEcsTaskExecutionRole(spec types.ServiceConfig) (string, error
type convertAPI interface {
GetDefaultVPC() (string, error)
GetSubNets(vpcId string) ([]string, error)
GetSubNets(vpcID string) ([]string, error)
ListRolesForPolicy(policy string) ([]string, error)
GetRoleArn(name string) (string, error)
}

View File

@ -7,7 +7,7 @@ import (
"github.com/golang/mock/gomock"
)
func Test_down_dont_delete_cluster(t *testing.T) {
func TestDownDontDeleteCluster(t *testing.T) {
ctrl := gomock.NewController(t)
defer ctrl.Finish()
m := mock.NewMockAPI(ctrl)
@ -23,7 +23,7 @@ func Test_down_dont_delete_cluster(t *testing.T) {
c.ComposeDown("test_project", false)
}
func Test_down_delete_cluster(t *testing.T) {
func TestDownDeleteCluster(t *testing.T) {
ctrl := gomock.NewController(t)
defer ctrl.Finish()
m := mock.NewMockAPI(ctrl)

View File

@ -93,14 +93,14 @@ func (s sdk) GetDefaultVPC() (string, error) {
return *vpcs.Vpcs[0].VpcId, nil
}
func (s sdk) GetSubNets(vpc string) ([]string, error) {
func (s sdk) GetSubNets(vpcID string) ([]string, error) {
logrus.Debug("Retrieve SubNets")
subnets, err := s.EC2.DescribeSubnets(&ec2.DescribeSubnetsInput{
DryRun: nil,
Filters: []*ec2.Filter{
{
Name: aws.String("vpc-id"),
Values: []*string{aws.String(vpc)},
Values: []*string{aws.String(vpcID)},
},
{
Name: aws.String("default-for-az"),

View File

@ -16,6 +16,9 @@ func (c *client) ComposeUp(project *compose.Project) error {
c.api.CreateCluster(c.Cluster)
}
update, err := c.api.StackExists(project.Name)
if err != nil {
return err
}
if update {
return fmt.Errorf("we do not (yet) support updating an existing CloudFormation stack")
}
@ -31,6 +34,9 @@ func (c *client) ComposeUp(project *compose.Project) error {
}
err = c.api.DescribeStackEvents(project.Name)
if err != nil {
return err
}
// TODO monitor progress
return nil