Skip to content

Commit

Permalink
Defining cloudwatch endpoint for all regions for tasks using awslogs …
Browse files Browse the repository at this point in the history
…as log driver
  • Loading branch information
mye956 committed May 23, 2024
1 parent c763e4d commit 1471d28
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 25 deletions.
43 changes: 21 additions & 22 deletions agent/engine/docker_task_engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -1854,32 +1854,31 @@ func (engine *DockerTaskEngine) createContainer(task *apitask.Task, container *a
}
}

// This is a short term solution only for specific regions until AWS SDK Go is upgraded to V2
// We're currently relying on AWS SDK Go V1 to obtain/format the corerct cloudwatch endpoint.
// This is will ned to be updated once we upgrade to AWS SDK Go V2.
if hostConfig.LogConfig.Type == logDriverTypeAwslogs {
region := engine.cfg.AWSRegion
if region == "eu-isoe-west-1" || region == "us-isof-south-1" || region == "us-isof-east-1" {
endpoint := ""
dnsSuffix := ""
partition, ok := ep.PartitionForRegion(ep.DefaultPartitions(), region)
if !ok {
logger.Warn("No partition resolved for region. Using AWS default", logger.Fields{
"region": region,
"defaultDNSSuffix": ep.AwsPartition().DNSSuffix(),
})
dnsSuffix = ep.AwsPartition().DNSSuffix()
region := hostConfig.LogConfig.Config["awslogs-region"]
endpoint := ""
dnsSuffix := ""
partition, ok := ep.PartitionForRegion(ep.DefaultPartitions(), region)
if !ok {
logger.Warn("No partition resolved for region. Using AWS default", logger.Fields{
"region": region,
"defaultDNSSuffix": ep.AwsPartition().DNSSuffix(),
})
dnsSuffix = ep.AwsPartition().DNSSuffix()
} else {
resolvedEndpoint, err := partition.EndpointFor("logs", region)
if err == nil {
endpoint = resolvedEndpoint.URL
} else {
resolvedEndpoint, err := partition.EndpointFor("logs", region)
if err == nil {
endpoint = resolvedEndpoint.URL
} else {
dnsSuffix = partition.DNSSuffix()
}
dnsSuffix = partition.DNSSuffix()
}
if endpoint == "" {
endpoint = fmt.Sprintf("https://logs.%s.%s", region, dnsSuffix)
}
hostConfig.LogConfig.Config["awslogs-endpoint"] = endpoint
}
if endpoint == "" {
endpoint = fmt.Sprintf("https://logs.%s.%s", region, dnsSuffix)
}
hostConfig.LogConfig.Config["awslogs-endpoint"] = endpoint
}

//Apply the log driver secret into container's LogConfig and Env secrets to container.Environment
Expand Down
18 changes: 15 additions & 3 deletions agent/engine/docker_task_engine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2877,7 +2877,17 @@ func TestCreateContainerAwslogsLogDriver(t *testing.T) {
{
name: "test container that uses awslogs log driver in IAD",
region: "us-east-1",
expectedLogConfigEndpoint: "",
expectedLogConfigEndpoint: "https://logs.us-east-1.amazonaws.com",
},
{
name: "test container that uses awslogs log driver in BJS",
region: "cn-north-1",
expectedLogConfigEndpoint: "https://logs.cn-north-1.amazonaws.com.cn",
},
{
name: "test container that uses awslogs log driver in OSU",
region: "us-gov-east-1",
expectedLogConfigEndpoint: "https://logs.us-gov-east-1.amazonaws.com",
},
{
name: "test container that uses awslogs log driver in NCL",
Expand Down Expand Up @@ -2906,8 +2916,10 @@ func TestCreateContainerAwslogsLogDriver(t *testing.T) {

rawHostConfigInput := dockercontainer.HostConfig{
LogConfig: dockercontainer.LogConfig{
Type: "awslogs",
Config: map[string]string{},
Type: "awslogs",
Config: map[string]string{
"awslogs-region": tc.region,
},
},
}
rawHostConfig, err := json.Marshal(&rawHostConfigInput)
Expand Down

0 comments on commit 1471d28

Please sign in to comment.