forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cloud] Create ECS integration test suite (ansible#33757)
Tests for: * ecs_cluster * ecs_service * ecs_service_facts * ecs_taskdefinition * ecs_taskdefinition_facts * Add idempotency testing Test ecs_cluster, ecs_service and ecs_taskdefinition for trivial idempotency. Add FIXMEs to the tests because the latter two fail. Remove unused dependencies
- Loading branch information
1 parent
b5318e2
commit 866d7fd
Showing
9 changed files
with
558 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"Version": "2012-10-17", | ||
"Statement": [ | ||
{ | ||
"Sid": "UnspecifiedCodeRepositories", | ||
"Effect": "Allow", | ||
"Action": [ | ||
"ecr:DescribeRepositories", | ||
"ecr:CreateRepository" | ||
], | ||
"Resource": "*" | ||
}, | ||
{ | ||
"Sid": "SpecifiedCodeRepositories", | ||
"Effect": "Allow", | ||
"Action": [ | ||
"ecr:GetRepositoryPolicy", | ||
"ecr:SetRepositoryPolicy", | ||
"ecr:DeleteRepository", | ||
"ecr:DeleteRepositoryPolicy", | ||
"ecr:DeleteRepositoryPolicy" | ||
], | ||
"Resource": [ | ||
"arn:aws:ecr:{{aws_region}}:{{aws_account}}:repository/ansible-*" | ||
] | ||
}, | ||
{ | ||
"Effect": "Allow", | ||
"Action": [ | ||
"application-autoscaling:Describe*", | ||
"application-autoscaling:PutScalingPolicy", | ||
"application-autoscaling:RegisterScalableTarget", | ||
"cloudwatch:DescribeAlarms", | ||
"cloudwatch:PutMetricAlarm", | ||
"ecs:List*", | ||
"ecs:Describe*", | ||
"ecs:CreateCluster", | ||
"ecs:DeleteCluster", | ||
"ecs:CreateService", | ||
"ecs:UpdateService", | ||
"elasticloadbalancing:Describe*", | ||
"iam:AttachRolePolicy", | ||
"iam:CreateRole", | ||
"iam:GetPolicy", | ||
"iam:GetPolicyVersion", | ||
"iam:GetRole", | ||
"iam:ListAttachedRolePolicies", | ||
"iam:ListRoles", | ||
"iam:ListGroups", | ||
"iam:ListUsers" | ||
], | ||
"Resource": [ | ||
"*" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"Version": "2012-10-17", | ||
"Statement": [ | ||
{ | ||
"Action": [ | ||
"iam:GetPolicy", | ||
"iam:GetPolicyVersion", | ||
"iam:GetRole", | ||
"iam:ListAttachedRolePolicies", | ||
"iam:ListGroups", | ||
"iam:ListInstanceProfilesForRole", | ||
"iam:ListPolicies", | ||
"iam:ListRoles", | ||
"iam:ListRolePolicies", | ||
"iam:ListUsers" | ||
], | ||
"Resource": "*", | ||
"Effect": "Allow", | ||
"Sid": "AllowReadOnlyIAMUse" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
cloud/aws | ||
ecs_service_facts | ||
ecs_task | ||
ecs_taskdefinition | ||
ecs_taskdefinition_facts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html | ||
# amzn-ami-2017.09.b-amazon-ecs-optimized | ||
ecs_agent_images: | ||
us-east-1: ami-71ef560b | ||
us-east-2: ami-1b8ca37e | ||
|
||
ecs_cluster_name: "{{ resource_prefix }}" | ||
user_data: | | ||
#!/bin/bash | ||
echo ECS_CLUSTER={{ ecs_cluster_name }} >> /etc/ecs/ecs.config | ||
ecs_service_name: "{{ resource_prefix }}-service" | ||
ecs_task_image_path: nginx | ||
ecs_task_name: "{{ resource_prefix }}-task" | ||
ecs_task_memory: 128 | ||
ecs_task_containers: | ||
- name: "{{ ecs_task_name }}" | ||
image: "{{ ecs_task_image_path }}" | ||
essential: true | ||
memory: "{{ ecs_task_memory }}" | ||
portMappings: | ||
- containerPort: "{{ ecs_task_container_port }}" | ||
hostPort: "{{ ecs_task_host_port|default(0) }}" | ||
mountPoints: "{{ ecs_task_mount_points|default([]) }}" | ||
ecs_service_deployment_configuration: | ||
minimum_healthy_percent: 0 | ||
maximum_percent: 100 | ||
ecs_service_placement_strategy: | ||
- type: binpack | ||
field: memory | ||
- type: spread | ||
field: attribute:ecs.availability-zone | ||
ecs_task_container_port: 8080 | ||
ecs_target_group_name: "{{ resource_prefix[:29] }}-tg" | ||
ecs_load_balancer_name: "{{ resource_prefix[:29] }}-lb" |
13 changes: 13 additions & 0 deletions
13
test/integration/targets/ecs_cluster/files/ec2-trust-policy.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"Version": "2008-10-17", | ||
"Statement": [ | ||
{ | ||
"Sid": "", | ||
"Effect": "Allow", | ||
"Principal": { | ||
"Service": "ec2.amazonaws.com" | ||
}, | ||
"Action": "sts:AssumeRole" | ||
} | ||
] | ||
} |
13 changes: 13 additions & 0 deletions
13
test/integration/targets/ecs_cluster/files/ecs-trust-policy.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"Version": "2008-10-17", | ||
"Statement": [ | ||
{ | ||
"Sid": "", | ||
"Effect": "Allow", | ||
"Principal": { | ||
"Service": "ecs.amazonaws.com" | ||
}, | ||
"Action": "sts:AssumeRole" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dependencies: [] |
Oops, something went wrong.