pbuf-cli

command module
v0.4.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 21, 2023 License: Apache-2.0 Imports: 5 Imported by: 0

README

README.md for PowerBuf CLI


PowerBuf CLI

The pbuf-cli is a Command Line Interface (CLI) tool for PowerBuf, allowing you to easily manage, and vendor modules.

We recommend using pbuf-cli with the PowerBuf Registry.


Installation

Binary

Grab latest binaries from the releases page: https://github.com/pbufio/pbuf-cli/releases.

From sources

First, you must ensure that you have Go installed on your system.

After that, install application from source using the following commands:

go install github.com/pbufio/pbuf-cli@latest

or for specific version:

go install github.com/pbufio/pbuf-cli@<tag>

Usage

General Structure

The general structure of commands is:

pbuf-cli [command] [arguments...]
Available Commands
Init

The init command allows you to initialize a new pbuf.yaml file.

Interactively:

pbuf-cli init

Non-interactively:

pbuf-cli init [module_name] [registry_url]

Replace [module_name] with the name of the module you want to register. Replace [registry_url] with the URL of the PBUF Registry (by default it uses pbuf.cloud.

Auth (if applicable)

The auth command allows you to authenticate with the registry. It saves the token in the .netrc file.

pbuf-cli auth [token]
Vendor

The vendor command allows you to vendor modules from provided configuration.

pbuf-cli vendor

By default, this command reads the configuration from pbuf.yaml. The configuration provides details like the repository, branch or tag, path, and output directory for each module.

Register Module

The register command allows you to register a module to the registry.

pbuf-cli modules register

You can register a module by providing the following details in pbuf.yaml:

version: v1
name: [module_name]
...

Replace [module_name] with the name of the module you want to register.

Get Module

The get command allows you to get the information about a module from the registry.

pbuf-cli modules get [module_name]

Response example:

{
  "id": "b9f9898a-8510-4017-9618-5244176eb1b8",
  "name": "pbufio/pbuf-registry",
  "tags": [
    "v0.0.0",
    "v0.1.0"
  ]
}

If module_name is not provided, the name from pbuf.yaml is used.

List Modules

The list command allows you to list all modules from the registry.

pbuf-cli modules list

Response example:

[
  {
    "id": "b9f9898a-8510-4017-9618-5244176eb1b8",
    "name": "pbufio/pbuf-registry"
  },
  {
    "id": "b9f9898a-8510-4017-9618-5244176eb1b8",
    "name": "pbufio/pbuf-cli"
  }
]
Push Module

The push command allows you to push .proto files to the registry with a specific tag.

pbuf-cli modules push [tag] [--draft]

Replace [tag] with the tag you want to push. Use the --draft flag to push a draft tag.

Draft tags are temporary tags that are automatically deleted in a week.

Update Modules Tags

The update command allows you to update the modules' tags to the latest in the registry. The command saves the latest tags in the pbuf.yaml file for each module.

pbuf-cli modules update
Delete Tag

The delete command allows you to delete a tag from the registry.

pbuf-cli modules delete-tag [tag]

The command deletes all the proto files associated with the tag.

Delete Module

The delete command allows you to delete a module from the registry.

pbuf-cli modules delete [module_name]

The command deletes all the tags and proto files associated with the module.


Configuration (pbuf.yaml)

A typical pbuf.yaml file contains the following:

version: v1
name: [module_name]
registry:
  addr: [registry_url]
  insecure: true # no tls support at the moment, but it will be added soon
export:
  paths:
    - [proto_files_path]
modules:
  # use the registry to vendor .proto files
  - name: [dependency_module_name]
    path: [path_in_registry]
    tag: [dependency_module_tag]
    out: [output_folder_on_local]
    gen_out: [gen_output_folder_on_local] # optional, if provided then patchers will be applied
  # use a git repository to vendor .proto files
  - repository: [repository_url]
    path: [path_in_repository]
    branch: [branch_name]
    tag: [tag_name]
    out: [output_folder_on_local]
    gen_out: [gen_output_folder_on_local] # optional, if provided then patchers will be applied

Replace main placeholders with appropriate values:

  • [module_name]: The module name you want to register.
  • [registry_url]: The URL of the pbuf-registry.
  • [proto_files_path]: One or several paths that contain .proto` files.

Replace placeholders in the registry modules with appropriate values:

  • [dependency_module_name]: The module name you want to vendor.
  • [path_in_registry]: Path to the folder or file in the registry you want to vendor.
  • [tag_name]: Specific tag to vendor.
  • [output_folder_on_local]: Folder where the vendor content should be placed on your local machine.
  • [gen_output_folder_on_local]: Folder where the generated content should be placed on your local machine. Used to patch go_package option

Replace placeholders in modules placed in git with appropriate values:

  • [repository_url]: The URL of the Git repository.
  • [path_in_repository]: Path to the folder or file in the repository you want to vendor.
  • [branch_name]: Specific branch name to clone (optional if tag is provided).
  • [tag_name]: Specific tag to clone (optional if branch is provided).
  • [output_folder_on_local]: Folder where the vendor content should be placed on your local machine.
  • [gen_output_folder_on_local]: Folder where the generated content should be placed on your local machine. Used to patch go_package option
Examples
Push Module
version: v1
name: pbufio/pbuf-registry
registry:
  addr: pbuf.cloud
  insecure: true # do not recommend for production usage
# all `.proto` files from `api` and `entities` folders
# will be exported as the module proto files
export:
  paths:
    - api
    - entities
modules: []
Vendor Modules
version: v1
name: pbuf-cli
registry:
   addr: pbuf.cloud
   insecure: true
modules:
  # will copy api/v1/*.proto file to third_party/api/v1/*.proto
  - name: pbufio/pbuf-registry
    tag: v0.0.1
    out: third_party
  # will copy api/v1/*.proto file to third_party/api/v1/*.proto
  # and add or change `go_package` option to `<go_mod_name>/gen/pbuf-registry/api/v1`
  - name: pbufio/pbuf-registry
    tag: v0.0.1
    out: third_party
    gen_out: gen
  # will copy examples/addressbook.proto file to proto/addressbook.proto
  - repository: https://github.com/protocolbuffers/protobuf
    path: examples/addressbook.proto
    branch: main
    out: proto
  # will copy examples folder to examples folder
  - repository: https://github.com/protocolbuffers/protobuf
    path: examples
    tag: v24.4

Private repositories and authentication

To authenticate with repositories that require authentication, pbuf-cli uses .netrc file. Ensure your .netrc file is properly configured in your home directory with credentials.

In case you are using pbuf-cli with the PBUF Registry with static token authentication, you can provide the token in your .netrc file as following:

machine <registry_host>
token <token>

For instance:

machine pbuf.cloud
token 1234567890

Contribution

If you'd like to contribute to pbuf, feel free to fork the repository and send us a pull request!


We hope you find pbuf useful for your projects!

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
gen
internal
git

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL