diff --git a/ecs/cmd/main/main.go b/ecs/cmd/main/main.go index e248b0c70..83d130218 100644 --- a/ecs/cmd/main/main.go +++ b/ecs/cmd/main/main.go @@ -5,6 +5,7 @@ import ( "github.com/docker/cli/cli-plugins/manager" "github.com/docker/cli/cli-plugins/plugin" "github.com/docker/cli/cli/command" + "github.com/docker/ecs-plugin/pkg/amazon" "github.com/docker/ecs-plugin/pkg/compose" "github.com/spf13/cobra" ) @@ -24,6 +25,7 @@ func main() { } type clusterOptions struct { + profile string region string cluster string } @@ -42,6 +44,7 @@ func NewRootCmd(name string, dockerCli command.Cli) *cobra.Command { VersionCommand(), ComposeCommand(&opts), ) + cmd.Flags().StringVarP(&opts.profile, "profile", "p", "default", "AWS Profile") cmd.Flags().StringVarP(&opts.cluster, "cluster", "c", "default", "ECS cluster") cmd.Flags().StringVarP(&opts.region, "region", "r", "", "AWS region") @@ -65,5 +68,23 @@ func ComposeCommand(clusteropts *clusterOptions) *cobra.Command { } opts := &compose.ProjectOptions{} opts.AddFlags(cmd.Flags()) + + cmd.AddCommand( + UpCommand(clusteropts, opts), + ) return cmd } + +func UpCommand(clusteropts *clusterOptions, opts *compose.ProjectOptions) *cobra.Command { + cmd := &cobra.Command{ + Use: "up", + RunE: compose.WithProject(opts, func(project *compose.Project, args []string) error { + client, err := amazon.NewClient(clusteropts.profile, clusteropts.cluster, clusteropts.region) + if err != nil { + return err + } + return client.ComposeUp(project) + }), + } + return cmd +} \ No newline at end of file diff --git a/ecs/pkg/amazon/client.go b/ecs/pkg/amazon/client.go index ea788b0b6..e1f5d2e9b 100644 --- a/ecs/pkg/amazon/client.go +++ b/ecs/pkg/amazon/client.go @@ -1,7 +1,37 @@ package amazon -import "github.com/aws/aws-sdk-go/aws/session" +import ( + "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/aws/session" + "github.com/docker/ecs-plugin/pkg/compose" +) -type Client struct { + +const ( + ProjectTag = "com.docker.compose.project" +) + +func NewClient(profile string, cluster string, region string) (compose.API, error) { + sess, err := session.NewSessionWithOptions(session.Options{ + Profile: profile, + Config: aws.Config{ + Region: aws.String(region), + }, + }) + if err != nil { + return nil, err + } + return &client{ + Cluster: cluster, + Region: region, + sess: sess, + }, nil +} + +type client struct { + Cluster string + Region string sess *session.Session } + +var _ compose.API = &client{} diff --git a/ecs/pkg/amazon/compose.go b/ecs/pkg/amazon/compose.go new file mode 100644 index 000000000..6a1073792 --- /dev/null +++ b/ecs/pkg/amazon/compose.go @@ -0,0 +1,11 @@ +package amazon + +import ( + "fmt" + "github.com/docker/ecs-plugin/pkg/compose" +) + +func (c *client) ComposeUp(project *compose.Project) error { + fmt.Println("TODO Up") + return nil +} diff --git a/ecs/pkg/compose/api.go b/ecs/pkg/compose/api.go new file mode 100644 index 000000000..14e1ca050 --- /dev/null +++ b/ecs/pkg/compose/api.go @@ -0,0 +1,5 @@ +package compose + +type API interface { + ComposeUp(project *Project) error +} \ No newline at end of file