tree: 18b25cce85cf9e319e9d13efe869d9dcdd1cf1fd [path history] [tgz]
  1. cmd/
  2. binaries.go
  3. binaries_test.go
  4. blobs.go
  5. blobs_test.go
  6. BUILD.gn
  7. checkout_artifacts.go
  8. host_tests.go
  9. host_tests_test.go
  10. images.go
  11. images_test.go
  12. modules.go
  13. modules_test.go
  14. OWNERS
  15. package_manifest.go
  16. package_manifest_test.go
  17. README.md
  18. sdk_archives.go
  19. sdk_archives_test.go
  20. sign.go
  21. sign_test.go
  22. tools.go
  23. tools_test.go
  24. upload.go
tools/artifactory/README.md

Artifactory

Artifactory is a host tool which uploads build artifacts from the local build directory to a cloud storage bucket in an organized layout. The artifacts which are uploaded are determined by build API metadata, e.g. images.json, blobs.json, binaries.json, etc.

The infrastructure invokes the tool after each build, so that the artifacts may be accessed by downstream clients.

Cloud storage layout

Artifacts specific to a build e.g. images are uploaded to a unique namespace according to a given -uuid. Artifacts which may be shared across builds, e.g. blobs, debug binaries, etc. are uploaded to a shared namespace. The precise layout is documented in cmd/up.go.

Deduplication

Artifacts which live in shared namespaces are not uploaded more than once. Thus the number of files uploaded, and the runtime of the tool, go down depending on the amount of deduplication across builds and/or repeat invocations.

Signing

The tool can be instructed to sign artifacts prior to upload by providing a ED25519 private key. See the -pkey flag in cmd/up.go and the implementation in sign.go.