I’m playing around with Waypoint with ECS and things are deploying well. I’m now trying to add a sidecar and I’m getting a rather opaque error.
» waypoint deploy -var aws-region=$AWS_DEFAULT_REGION
» Deploying...
✓ Found existing ECS cluster: dtest-waypoint
✓ Found existing IAM role to use: ecr-mobileweb
! error reading from server: EOF
This is the sidecar I defined:
sidecar {
name = "db01"
image = "postgres:13"
memory = 512
container_port = "5432"
host_port = "5432"
static_environment = {
POSTGRES_PASSWORD = "password"
}
}
Any help would be greatly appreciated. Is there a way to turn on debugging for the waypoint command?