Upgrade to Consul dataplane architecture
This topic describes how to manually upgrade a live installation of Consul on ECS to the dataplane-based architecture with zero downtime. Since v0.7.0, Consul service mesh on ECS uses Consul dataplanes, which are lightweight processes for managing Envoy proxies in containerized networks. Refer to the release notes for additional information about the switch to Consul dataplanes.
Requirements
Before you upgrading to the dataplane-based architecture, you must upgrade your Consul servers to a version compatible with Consul ECS:
- Consul 1.14.x and later
- Consul dataplane 1.3.x and later
Deploy the latest version of the ECS controller module
In an ACL enabled cluster, deploy the latest version of the ECS controller module in hashicorp/terraform-aws-consul-ecs
along with the older version of the ACL controller. Note that both the controllers should coexist until the upgrade is complete. The new version of the controller only tracks tasks that use dataplanes.
Upgrade workloads
For application tasks, upgrade the individual task definitions to v0.7.0
or later of the mesh-task
module. You must upgrade each task one at a time.
For gateway tasks, upgrade the individual task definitions to v0.7.0
or later of the gateway-task
module. You must upgrade each task one by one independently. ECS creates new versions of tasks before shutting down the older tasks to support zero downtime deployments.
Delete previous tasks
After upgrading all tasks, you can destroy the acl-controller
containers, which are replaced by the ECS controller. You can manually remove any artifacts related to the old architecture, including Consul clients and ACL controllers, by executing the following commands:
Run
consul acl policy delete
to delete the client policy. You can pass either the ID of the policy or the name of the policy, for example:Refer to the
consul acl policy delete
documentation for additional information.Run the
consul acl role delete
command to delete the client role. You can pass either the ID of the role or the name of the role, for example:Refer to the
consul acl role delete
documentation for additional information.Run the
consul acl auth-method delete
command and specify the auth method name to delete.Refer to the
consul acl auth-method delete
documentation for additional information.