Skip to content
New issue

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

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

Already on GitHub? # to your account

Migrate artifact hosting to cloudsmith #394

Merged
merged 24 commits into from
Jan 13, 2024

Conversation

krishnangovindraj
Copy link
Member

@krishnangovindraj krishnangovindraj commented Jan 9, 2024

What is the goal of this PR?

Updates artifact deployment & consumption rules to use cloudsmith instead of the self-hosted sonatype repository.

For APT, Artifact (/raw), and Helm packages, a CloudSmith deployment repository can now be specified using a fixed URI scheme: cloudsmith://typedb/public-release, for example to indicate the typedb/public-release CloudSmith repository.

What are the changes implemented in this PR?

  • Updates deployment rules & scripts to use Cloudsmith.
  • Updates consumption rules to use Cloudsmith instead of nexus.
  • Updates documentation relating to repo.vaticle.com

@typedb-bot
Copy link
Member

typedb-bot commented Jan 9, 2024

PR Review Checklist

Do not edit the content of this comment. The PR reviewer should simply update this comment by ticking each review item below, as they get completed.


Trivial Change

  • This change is trivial and does not require a code or architecture review.

Code

  • Packages, classes, and methods have a single domain of responsibility.
  • Packages, classes, and methods are grouped into cohesive and consistent domain model.
  • The code is canonical and the minimum required to achieve the goal.
  • Modules, libraries, and APIs are easy to use, robust (foolproof and not errorprone), and tested.
  • Logic and naming has clear narrative that communicates the accurate intent and responsibility of each module (e.g. method, class, etc.).
  • The code is algorithmically efficient and scalable for the whole application.

Architecture

  • Any required refactoring is completed, and the architecture does not introduce technical debt incidentally.
  • Any required build and release automations are updated and/or implemented.
  • Any new components follows a consistent style with respect to the pre-existing codebase.
  • The architecture intuitively reflects the application domain, and is easy to understand.
  • The architecture has a well-defined hierarchy of encapsulated components.
  • The architecture is extensible and scalable.

Copy link
Member Author

@krishnangovindraj krishnangovindraj left a comment

Choose a reason for hiding this comment

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

The big IF here is whether the crates.io expects the "application/json" header. Cloudsmith rejects it, so we're no longer setting it.

| <a id="assemble_rpm-symlinks"></a>symlinks | mapping between source and target of symbolic links created at installation | <code>{}</code> |
| <a id="assemble_rpm-tags"></a>tags | additional tags passed to all wrapped rules | <code>[]</code> |


Copy link
Member Author

Choose a reason for hiding this comment

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

Removes rpm targets

@@ -165,7 +168,7 @@ def artifact_file(name,

http_file(
name = name,
urls = ["{}/{}/{}/{}".format(repository_url, group_name, version, artifact_name)],
urls = ["{}/names/{}/versions/{}/{}".format(repository_url.rstrip("/"), group_name, version, artifact_name)],
Copy link
Member Author

Choose a reason for hiding this comment

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

Broke if the url had a trailing /

return DefaultInfo(
executable = _deploy_script,
runfiles = ctx.runfiles(
files = files,
files = files + cloudsmith_lib_files,
Copy link
Member Author

Choose a reason for hiding this comment

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

How we add the dependency on the //common/cloudsmith:clodsmith-wrapper wrapper to the script.

Copy link
Member Author

Choose a reason for hiding this comment

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

I have no idea why it detected this as a move. Logically, it's just a new file

@@ -99,7 +99,7 @@ class CrateDeployer : Callable<Unit> {
private fun httpPut(url: String, token: String, content: ByteArray): HttpResponse {
return NetHttpTransport()
.createRequestFactory()
.buildPutRequest(GenericUrl(url), ByteArrayContent("application/json", content))
.buildPutRequest(GenericUrl(url), ByteArrayContent(null, content)) // TODO: Verify it works with crates.io
Copy link
Member Author

Choose a reason for hiding this comment

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

This is a TODO I don't know how to verify.

Copy link
Member Author

Choose a reason for hiding this comment

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

Roll our own deploy_helm rule. We used to use one from a 3rd party (we continue to use their other helm rules)

@@ -235,3 +237,22 @@ deploy_apt = rule(
Select deployment to `snapshot` or `release` repository with `bazel run //:some-deploy-apt -- [snapshot|release]
"""
)

def deploy_apt(name, target, snapshot, release, **kwargs):
Copy link
Member

Choose a reason for hiding this comment

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

This should be able to either deploy to cloudsmith apt (if we use the cloudsmith://... convention you established) or to the previous version using curl.

Same applies to Artifact and anything else using cloudsmith://... endpoint.

The rules should still able to interchange with snapshot (say Docker) and release (DockerHub) right?


load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")

def _deploy_helm_impl(ctx):
Copy link
Member

@flyingsilverfin flyingsilverfin Jan 12, 2024

Choose a reason for hiding this comment

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

This helm rule being specific to Cloudsmith is OK I figure since it's new

@flyingsilverfin flyingsilverfin merged commit b3618bb into typedb:master Jan 13, 2024
# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants