Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debug logs for port bindings when Docker deploy image fails #761

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions internal/docker/builder.go
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kegsay Any thoughts on the possible root cause described in the issue description?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not really. This isn't something we see in vanilla Complement runs, so it's likely something unique to your configuration.

Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,48 @@ func printLogs(docker *client.Client, containerID, contextStr string) {
log.Printf("============== %s : END LOGS ==============\n\n\n", contextStr)
}

func printPortBindingsOfAllComplementContainers(docker *client.Client, contextStr string) {
ctx := context.Background()

containers, err := docker.ContainerList(ctx, container.ListOptions{
All: true,
Filters: label(
complementLabel,
),
})
if err != nil {
log.Printf("%s : Failed to list containers while trying to `printPortBindingsOfAllComplementContainers`: %s\n", contextStr, err)
return
}

log.Printf("============== %s : START ALL COMPLEMENT DOCKER PORT BINDINGS ==============\n", contextStr)

for _, container := range containers {
log.Printf("Container: %s: %s", container.ID, container.Names)

inspectRes, err := docker.ContainerInspect(ctx, container.ID)
if err != nil {
log.Printf("%s : Failed to inspect container (%s) while trying to `printPortBindingsOfAllComplementContainers`: %s\n", contextStr, container.ID, err)
return
}

// Print an example so it's easier to understand the output
log.Printf(" (host) -> (container)\n")
// Then print the actual port bindings
for containerPort, portBindings := range inspectRes.NetworkSettings.Ports {
hostPortBindingStrings := make([]string, len(portBindings))
for portBindingIndex, portBinding := range portBindings {
hostPortBindingStrings[portBindingIndex] = fmt.Sprintf("%s:%s", portBinding.HostIP, portBinding.HostPort)
}

log.Printf(" %s -> %s\n", strings.Join(hostPortBindingStrings, ", "), containerPort)
}

}

log.Printf("=============== %s : END ALL COMPLEMENT DOCKER PORT BINDINGS ===============\n\n\n", contextStr)
}

func endpoints(p nat.PortMap, csPort, ssPort int) (baseURL, fedBaseURL string, err error) {
csapiPort := fmt.Sprintf("%d/tcp", csPort)
csapiPortInfo, ok := p[nat.Port(csapiPort)]
Expand Down
16 changes: 14 additions & 2 deletions internal/docker/deployer.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,9 @@ func (d *Deployer) CreateDirtyServer(hsName string) (*HomeserverDeployment, erro
baseImageURI = uri
}

containerName := fmt.Sprintf("complement_%s_dirty_%s", d.config.PackageNamespace, hsName)
hsDeployment, err := deployImage(
d.Docker, baseImageURI, fmt.Sprintf("complement_%s_dirty_%s", d.config.PackageNamespace, hsName),
d.Docker, baseImageURI, containerName,
d.config.PackageNamespace, "", hsName, nil, "dirty",
networkName, d.config,
)
Expand All @@ -101,6 +102,11 @@ func (d *Deployer) CreateDirtyServer(hsName string) (*HomeserverDeployment, erro
// print logs to help debug
printLogs(d.Docker, hsDeployment.ContainerID, "dirty")
}

// Give some context for what the port bindings look like the time of the failure.
// This gives better context for when `bind: address already in use` errors happen.
printPortBindingsOfAllComplementContainers(d.Docker, "While dirty deploying "+containerName)

return nil, fmt.Errorf("CreateDirtyServer: Failed to deploy image %v : %w", baseImageURI, err)
}
return hsDeployment, nil
Expand Down Expand Up @@ -164,15 +170,21 @@ func (d *Deployer) Deploy(ctx context.Context, blueprintName string) (*Deploymen
asIDToRegistrationMap := asIDToRegistrationFromLabels(img.Labels)

// TODO: Make CSAPI port configurable
containerName := fmt.Sprintf("complement_%s_%s_%s_%d", d.config.PackageNamespace, d.DeployNamespace, contextStr, counter)
deployment, err := deployImage(
d.Docker, img.ID, fmt.Sprintf("complement_%s_%s_%s_%d", d.config.PackageNamespace, d.DeployNamespace, contextStr, counter),
d.Docker, img.ID, containerName,
d.config.PackageNamespace, blueprintName, hsName, asIDToRegistrationMap, contextStr, networkName, d.config,
)
if err != nil {
if deployment != nil && deployment.ContainerID != "" {
// print logs to help debug
printLogs(d.Docker, deployment.ContainerID, contextStr)
}

// Give some context for what the port bindings look like the time of the failure.
// This gives better context for when `bind: address already in use` errors happen.
printPortBindingsOfAllComplementContainers(d.Docker, "While deploying "+containerName)

return fmt.Errorf("Deploy: Failed to deploy image %+v : %w", img, err)
}
mu.Lock()
Expand Down
Loading