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
In order to work with bridge networking in ECS we need to use the ECS API more. The basics of how we could support bridged networking is:
Launch the worker tasks
Use the task IDs from the output of the launch and use describe-tasks to determine the host port used (when ephemeral is used)
Determine the address of the containers instance (container-id to instance-id to IP address)
Manager connects to workers using the information gathered
Additionally we probably want to be able to determine if a task is using "bridge" or "host" networking. We can easily determine which "networkMode" was used via describe-task-definition. Note, this may not be enough as the "networkMode" may be overridden. In that case we would have to check the task itself.
The text was updated successfully, but these errors were encountered:
In order to work with bridge networking in ECS we need to use the ECS API more. The basics of how we could support bridged networking is:
Additionally we probably want to be able to determine if a task is using "bridge" or "host" networking. We can easily determine which "networkMode" was used via describe-task-definition. Note, this may not be enough as the "networkMode" may be overridden. In that case we would have to check the task itself.
The text was updated successfully, but these errors were encountered: