Skip to content

Merge branch 'master' into TT-15334/docker-fips

571a7c4
Select commit
Loading
Failed to load commit list.
Merged

Add docker images built using FIPS binaries #894

Merge branch 'master' into TT-15334/docker-fips
571a7c4
Select commit
Loading
Failed to load commit list.
probelabs / Visor: style succeeded Sep 23, 2025 in 4m 32s

✅ Check Passed

style check completed successfully with no issues found.

Details

📊 Summary

  • Total Issues: 2

🐛 Issues by Category

🎨 Style (2)

  • ℹ️ ci/goreleaser/goreleleaser.yml:170 - The dockers section contains significant duplication. The extra_files list and many build_flag_templates are identical across multiple docker build configurations.
  • ℹ️ ci/goreleaser/goreleleaser.yml:241 - The docker_manifests section contains duplicated image_templates for different tag formats (e.g., full tag, major.minor, major).

Generated by Visor - AI-powered code review

Annotations

Check notice on line 240 in ci/goreleaser/goreleleaser.yml

See this annotation in the file changed.

@probelabs probelabs / Visor: style

style Issue

The `dockers` section contains significant duplication. The `extra_files` list and many `build_flag_templates` are identical across multiple docker build configurations.
Raw output
To improve maintainability and reduce redundancy, consider using YAML anchors and aliases to define common blocks of configuration once and reuse them. For example, the `extra_files` list can be defined as an anchor and referenced in each docker configuration.

Check notice on line 264 in ci/goreleaser/goreleleaser.yml

See this annotation in the file changed.

@probelabs probelabs / Visor: style

style Issue

The `docker_manifests` section contains duplicated `image_templates` for different tag formats (e.g., full tag, major.minor, major).
Raw output
While `goreleaser`'s configuration schema might limit the use of anchors within `name_template` and `image_templates` combinations, it's worth reviewing if a more concise structure can be achieved to avoid repeating the list of images for each manifest tag version.