mirror of https://github.com/kubernetes/kops.git
96 lines
2.4 KiB
Go
96 lines
2.4 KiB
Go
/*
|
|
Copyright 2019 The Kubernetes 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 aws
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/service/sqs"
|
|
"k8s.io/klog/v2"
|
|
"k8s.io/kops/pkg/resources"
|
|
"k8s.io/kops/upup/pkg/fi"
|
|
"k8s.io/kops/upup/pkg/fi/cloudup/awsup"
|
|
)
|
|
|
|
func DumpSQSQueue(op *resources.DumpOperation, r *resources.Resource) error {
|
|
data := make(map[string]interface{})
|
|
data["id"] = r.ID
|
|
data["name"] = r.Name
|
|
data["type"] = r.Type
|
|
data["raw"] = r.Obj
|
|
op.Dump.Resources = append(op.Dump.Resources, data)
|
|
|
|
return nil
|
|
}
|
|
|
|
func DeleteSQSQueue(cloud fi.Cloud, r *resources.Resource) error {
|
|
ctx := context.TODO()
|
|
c := cloud.(awsup.AWSCloud)
|
|
|
|
url := r.ID
|
|
|
|
klog.V(2).Infof("Deleting SQS queue %q", url)
|
|
request := &sqs.DeleteQueueInput{
|
|
QueueUrl: &url,
|
|
}
|
|
if _, err := c.SQS().DeleteQueue(ctx, request); err != nil {
|
|
if awsup.AWSErrorCode(err) == "AWS.SimpleQueueService.NonExistentQueue" {
|
|
// Concurrently deleted
|
|
return nil
|
|
}
|
|
return fmt.Errorf("error deleting SQS queue %q: %w", url, err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func ListSQSQueues(cloud fi.Cloud, vpcID, clusterName string) ([]*resources.Resource, error) {
|
|
c := cloud.(awsup.AWSCloud)
|
|
|
|
klog.V(2).Infof("Listing SQS queues")
|
|
queuePrefix := strings.ReplaceAll(clusterName, ".", "-")
|
|
|
|
request := &sqs.ListQueuesInput{
|
|
QueueNamePrefix: &queuePrefix,
|
|
}
|
|
response, err := c.SQS().ListQueues(context.TODO(), request)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error listing SQS queues: %v", err)
|
|
}
|
|
if response == nil || len(response.QueueUrls) == 0 {
|
|
return nil, nil
|
|
}
|
|
|
|
var resourceTrackers []*resources.Resource
|
|
|
|
for _, queueUrl := range response.QueueUrls {
|
|
resourceTracker := &resources.Resource{
|
|
Name: queueUrl,
|
|
ID: queueUrl,
|
|
Type: "sqs",
|
|
Deleter: DeleteSQSQueue,
|
|
Dumper: DumpSQSQueue,
|
|
Obj: queueUrl,
|
|
}
|
|
|
|
resourceTrackers = append(resourceTrackers, resourceTracker)
|
|
}
|
|
|
|
return resourceTrackers, nil
|
|
}
|