tree: b8375dea68534a122ae9d0fc808dd41e9a52efcc [path history] [tgz]
  1. cmd/
  2. assembly_input_archives.go
  3. assembly_input_archives_test.go
  4. binaries.go
  5. binaries_test.go
  6. blobs.go
  7. blobs_test.go
  8. BUILD.gn
  9. images.go
  10. images_test.go
  11. modules.go
  12. modules_test.go
  13. OWNERS
  14. product_bundle.go
  15. product_bundle_test.go
  16. README.md
  17. sdk_archives.go
  18. sdk_archives_test.go
  19. tools.go
  20. tools_test.go
  21. upload.go
tools/artifactory/README.md

Artifactory

Artifactory is a host tool which emits a GCS upload manifest of build artifacts from the local build directory in an organized layout. The artifacts which are written into the manifest are determined by build API metadata, e.g. images.json, blobs.json, binaries.json, etc.

The infrastructure invokes artifactory and pipes the upload manifest into its uploader 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 unique -namespace. 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.