Skip to content

Commit

Permalink
Add Bundle Bar to implementors (#242)
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Dolitsky <[email protected]>
  • Loading branch information
jdolitsky authored Mar 16, 2021
1 parent ed267c1 commit f13f5cb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions implementors.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ See [OCI Artifacts][artifacts] for how to add OCI Artifacts support to your regi
- [Amazon Elastic Container Registry](#amazon-elastic-container-registry-ecr)
- [Google Artifact Registry](#google-artifact-registry-gar)
- [GitHub Packages container registry](#github-container-registry)
- [Bundle Bar](#bundle-bar)

## Artifact Types Using ORAS

Expand Down Expand Up @@ -280,6 +281,28 @@ ACR Artifact Documentation: [aka.ms/acr/artifacts](https://aka.ms/acr/artifacts)
--media-type application/vnd.unknown.layer.v1+txt
```

### [Bundle Bar](https://bundle.bar/docs/supported-clients/oras/)

- Authenticating with Bundle Bar

```sh
echo $BB_TOKEN | oras login bundle.bar -u $BB_USER --password-stdin
```

- Pushing Artifacts to Bundle Bar

```sh
oras push bundle.bar/u/${BB_USER}/samples/artifact:1.0 \
./artifact.txt:application/vnd.unknown.layer.v1+txt
```

- Pulling Artifacts from Bundle Bar

```sh
oras pull bundle.bar/u/${BB_USER}/samples/artifact:1.0 \
--media-type application/vnd.unknown.layer.v1+txt
```

## Adding Your Registry or Artifact Type

Do you support [OCI Artifacts][artifacts] and would like your registry and/or project listed here? Please [submit a PR](https://github.com/deislabs/oras/pulls), using similar formatting above. We're happy to promote all usage, as well as feedback.
Expand Down

0 comments on commit f13f5cb

Please sign in to comment.