Merge pull request #1727 from kaczynskid/feature/ecs_service_facts_fixes

ecs_service_facts fixes
reviewable/pr18780/r1
René Moser 9 years ago
commit be03691945

@ -23,7 +23,10 @@ notes:
description: description:
- Lists or describes services in ecs. - Lists or describes services in ecs.
version_added: "2.1" version_added: "2.1"
author: Mark Chance (@java1guy) author:
- "Mark Chance (@java1guy)"
- "Darek Kaczynski (@kaczynskid)"
requirements: [ json, boto, botocore, boto3 ]
options: options:
details: details:
description: description:
@ -59,23 +62,69 @@ EXAMPLES = '''
cluster: test-cluster cluster: test-cluster
''' '''
# Disabled the RETURN as it was breaking docs building. Someone needs to fix RETURN = '''
# this services:
RETURN = '''# ''' description: When details is false, returns an array of service ARNs, otherwise an array of complex objects as described below.
''' returned: success
services: When details is false, returns an array of service ARNs, else an array of these fields type: list of complex
clusterArn: The Amazon Resource Name (ARN) of the of the cluster that hosts the service. contains:
desiredCount: The desired number of instantiations of the task definition to keep running on the service. clusterArn:
loadBalancers: A list of load balancer objects description: The Amazon Resource Name (ARN) of the of the cluster that hosts the service.
loadBalancerName: the name returned: always
containerName: The name of the container to associate with the load balancer. type: string
containerPort: The port on the container to associate with the load balancer. desiredCount:
pendingCount: The number of tasks in the cluster that are in the PENDING state. description: The desired number of instantiations of the task definition to keep running on the service.
runningCount: The number of tasks in the cluster that are in the RUNNING state. returned: always
serviceArn: The Amazon Resource Name (ARN) that identifies the service. The ARN contains the arn:aws:ecs namespace, followed by the region of the service, the AWS account ID of the service owner, the service namespace, and then the service name. For example, arn:aws:ecs:region :012345678910 :service/my-service . type: int
serviceName: A user-generated string used to identify the service loadBalancers:
status: The valid values are ACTIVE, DRAINING, or INACTIVE. description: A list of load balancer objects
taskDefinition: The ARN of a task definition to use for tasks in the service. returned: always
type: complex
contains:
loadBalancerName:
description: the name
returned: always
type: string
containerName:
description: The name of the container to associate with the load balancer.
returned: always
type: string
containerPort:
description: The port on the container to associate with the load balancer.
returned: always
type: int
pendingCount:
description: The number of tasks in the cluster that are in the PENDING state.
returned: always
type: int
runningCount:
description: The number of tasks in the cluster that are in the RUNNING state.
returned: always
type: int
serviceArn:
description: The Amazon Resource Name (ARN) that identifies the service. The ARN contains the arn:aws:ecs namespace, followed by the region of the service, the AWS account ID of the service owner, the service namespace, and then the service name. For example, arn:aws:ecs:region :012345678910 :service/my-service .
returned: always
type: string
serviceName:
description: A user-generated string used to identify the service
returned: always
type: string
status:
description: The valid values are ACTIVE, DRAINING, or INACTIVE.
returned: always
type: string
taskDefinition:
description: The ARN of a task definition to use for tasks in the service.
returned: always
type: string
deployments:
description: list of service deployments
returned: always
type: list of complex
events:
description: lost of service events
returned: always
type: list of complex
''' '''
try: try:
import boto import boto
@ -91,7 +140,7 @@ except ImportError:
HAS_BOTO3 = False HAS_BOTO3 = False
class EcsServiceManager: class EcsServiceManager:
"""Handles ECS Clusters""" """Handles ECS Services"""
def __init__(self, module): def __init__(self, module):
self.module = module self.module = module
@ -128,11 +177,26 @@ class EcsServiceManager:
fn_args['cluster'] = cluster fn_args['cluster'] = cluster
fn_args['services']=services.split(",") fn_args['services']=services.split(",")
response = self.ecs.describe_services(**fn_args) response = self.ecs.describe_services(**fn_args)
relevant_response = dict(services = response['services']) relevant_response = dict(services = map(self.extract_service_from, response['services']))
if 'failures' in response and len(response['failures'])>0: if 'failures' in response and len(response['failures'])>0:
relevant_response['services_not_running'] = response['failures'] relevant_response['services_not_running'] = response['failures']
return relevant_response return relevant_response
def extract_service_from(self, service):
# some fields are datetime which is not JSON serializable
# make them strings
if 'deployments' in service:
for d in service['deployments']:
if 'createdAt' in d:
d['createdAt'] = str(d['createdAt'])
if 'updatedAt' in d:
d['updatedAt'] = str(d['updatedAt'])
if 'events' in service:
for e in service['events']:
if 'createdAt' in e:
e['createdAt'] = str(e['createdAt'])
return service
def main(): def main():
argument_spec = ec2_argument_spec() argument_spec = ec2_argument_spec()
@ -159,13 +223,9 @@ def main():
if 'service' not in module.params or not module.params['service']: if 'service' not in module.params or not module.params['service']:
module.fail_json(msg="service must be specified for ecs_service_facts") module.fail_json(msg="service must be specified for ecs_service_facts")
ecs_facts = task_mgr.describe_services(module.params['cluster'], module.params['service']) ecs_facts = task_mgr.describe_services(module.params['cluster'], module.params['service'])
# the bad news is the result has datetime fields that aren't JSON serializable
# nuk'em!
for service in ecs_facts['services']:
del service['deployments']
del service['events']
else: else:
ecs_facts = task_mgr.list_services(module.params['cluster']) ecs_facts = task_mgr.list_services(module.params['cluster'])
ecs_facts_result = dict(changed=False, ansible_facts=ecs_facts) ecs_facts_result = dict(changed=False, ansible_facts=ecs_facts)
module.exit_json(**ecs_facts_result) module.exit_json(**ecs_facts_result)

Loading…
Cancel
Save