예제 #1
0
파일: delete.py 프로젝트: wnjuguna/taskcat
 def __init__(
     self,
     package: str,
     aws_profile: str = "default",
     region="default",
     _stack_type="package",
 ):
     """
     :param package: installed package to delete, can be an install name or uuid
     :param aws_profile: aws profile to use for deletion
     :param region: region to delete from, default will use aws cli configured
     default
     """
     LOG.warning("delete is in alpha feature, use with caution")
     boto3_cache = Boto3Cache()
     if region == "default":
         region = boto3_cache.get_default_region(aws_profile)
     if isinstance(region, str):
         region = [region]
     stacks = Stacker.list_stacks([aws_profile], region)
     jobs = []
     for stack in stacks:
         name = stack.get("taskcat-installer",
                          stack["taskcat-project-name"])
         job = {
             "name": name,
             "project_name": stack["taskcat-project-name"],
             "test_name": stack["taskcat-test-name"],
             "taskcat_id": stack["taskcat-id"].hex,
             "region": stack["region"],
             "type":
             "package" if stack.get("taskcat-installer") else "test",
             "stack_id": stack["stack-id"],
         }
         if _stack_type == job["type"]:
             if package in [job["name"], job["taskcat_id"], "ALL"]:
                 jobs.append(job)
     # TODO: concurrency and wait for complete
     for job in jobs:
         client = boto3_cache.client("cloudformation",
                                     profile=aws_profile,
                                     region=job["region"])
         Stack.delete(client=client, stack_id=job["stack_id"])
예제 #2
0
 def _delete_stack(stack: Stack):
     stack.delete(stack_id=stack.id, client=stack.client)
     stack.refresh()
예제 #3
0
 def _delete_stack(stack: Stack):
     stack.delete()
예제 #4
0
파일: delete.py 프로젝트: tbulding/taskcat
 def _delete_stack(boto3_cache, job, aws_profile):
     client = boto3_cache.client("cloudformation",
                                 profile=aws_profile,
                                 region=job["region"])
     Stack.delete(client=client, stack_id=job["stack_id"])