You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What this feature would enable is having an init container to deliver binaries, for example monitoring (APM) agent files, before starting the essential container with the application.
Without the dependsOn option available, in case of this example, the application starts before files are mounted from the agent's container and fail to attach an agent, or in some cases fails completely.
The text was updated successfully, but these errors were encountered:
Hi @AlexJov, thank you for raising this issue. It seems this parameter is already supported but it was not properly documented in the Ansible module. dependsOn parameter requires platform version >= 1.3.0 for tasks that use the Fargate launch type. Let me know please if it works for you. Thank you.
Use module_util helper for tagging AMIs
SUMMARY
We have some helpers for tagging EC2 resources, use them for tagging AMIs.
ISSUE TYPE
Feature Pull Request
COMPONENT NAME
ec2_ami
ADDITIONAL INFORMATION
Reviewed-by: Alina Buzachis <None>
Reviewed-by: None <None>
SUMMARY
Enabling init containers when describing Containers with ECS TaskDefinitions by adding
depends_on
task configuration option.ISSUE TYPE
COMPONENT NAME
ecs_taskdefinition
ANSIBLE VERSION
ADDITIONAL INFORMATION
Having container dependencies is supported by boto3 lib:
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ecs.html#ECS.Client.register_task_definition
However, at the moment is not part of the available parameters to pass with AWS community Ansible collection:
community.aws/plugins/modules/ecs_taskdefinition.py
Line 275 in 130cf3c
What this feature would enable is having an init container to deliver binaries, for example monitoring (APM) agent files, before starting the essential container with the application.
Without the
dependsOn
option available, in case of this example, the application starts before files are mounted from the agent's container and fail to attach an agent, or in some cases fails completely.The text was updated successfully, but these errors were encountered: