зеркало из https://github.com/docker/compose-cli.git
108 строки
2.9 KiB
Go
108 строки
2.9 KiB
Go
/*
|
|
Copyright 2020 Docker Compose CLI authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package ecs
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/docker/compose/v2/pkg/api"
|
|
"github.com/docker/compose/v2/pkg/progress"
|
|
|
|
"github.com/docker/compose-cli/utils"
|
|
)
|
|
|
|
func (b *ecsAPIService) Down(ctx context.Context, projectName string, options api.DownOptions) error {
|
|
if err := checkUnsupportedDownOptions(ctx, options); err != nil {
|
|
return err
|
|
}
|
|
return progress.Run(ctx, func(ctx context.Context) error {
|
|
return b.down(ctx, projectName)
|
|
})
|
|
}
|
|
|
|
func (b *ecsAPIService) down(ctx context.Context, projectName string) error {
|
|
resources, err := b.aws.ListStackResources(ctx, projectName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = resources.apply(awsTypeCapacityProvider, doDelete(ctx, b.aws.DeleteCapacityProvider))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = resources.apply(awsTypeAutoscalingGroup, doDelete(ctx, b.aws.DeleteAutoscalingGroup))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
previousEvents, err := b.previousStackEvents(ctx, projectName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = b.aws.DeleteStack(ctx, projectName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return b.WaitStackCompletion(ctx, projectName, stackDelete, previousEvents...)
|
|
}
|
|
|
|
func (b *ecsAPIService) previousStackEvents(ctx context.Context, project string) ([]string, error) {
|
|
events, err := b.aws.DescribeStackEvents(ctx, project)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var previousEvents []string
|
|
for _, e := range events {
|
|
previousEvents = append(previousEvents, *e.EventId)
|
|
}
|
|
return previousEvents, nil
|
|
}
|
|
|
|
func doDelete(ctx context.Context, delete func(ctx context.Context, arn string) error) func(r stackResource) error {
|
|
return func(r stackResource) error {
|
|
w := progress.ContextWriter(ctx)
|
|
w.Event(progress.RemovingEvent(r.LogicalID))
|
|
err := delete(ctx, r.ARN)
|
|
if err != nil {
|
|
w.Event(progress.ErrorEvent(r.LogicalID))
|
|
return err
|
|
}
|
|
w.Event(progress.RemovedEvent(r.LogicalID))
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func checkUnsupportedDownOptions(ctx context.Context, o api.DownOptions) error {
|
|
var errs error
|
|
checks := []struct {
|
|
toCheck, expected interface{}
|
|
option string
|
|
}{
|
|
{o.Volumes, false, "volumes"},
|
|
{o.Images, "", "images"},
|
|
{o.RemoveOrphans, false, "remove-orphans"},
|
|
{o.Timeout, nil, "timeout"},
|
|
}
|
|
for _, c := range checks {
|
|
errs = utils.CheckUnsupported(ctx, errs, c.toCheck, c.expected, "down", c.option)
|
|
}
|
|
|
|
return errs
|
|
}
|