0.2.0 • Published 2 years ago

oci-registry-client v0.2.0

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

node-oci-registry-client

OCI Registry API V2 client.

Ported from cloudydeno/deno-docker_registry_client

Design Points

  • Only handling the v2 Registry API.
  • Typescript, async/await, Promises, fetch()
  • Covers most APIs: pull, push, list, delete
  • I'm mostly using gcr.io though there's also some tests against major registries.

Auth Approaches

  • Dockerhub: normal user/password
  • Github: username $USERNAME password $GITHUB_TOKEN
    • like with Github API, username can probably be anything (haven't confirmed)
  • AWS ECR: username "AWS" password from running aws ecr get-login-password
    • you need AWS auth even for 'public' images
  • Gcloud GCR: username "oauth2accesstoken" password from running gcloud auth print-access-token

Overview

Most usage of this package involves creating a Registry API client for a specific repository and calling its methods.

Usage

Simple usage will look like this:

import { RegistryClientV2 } from 'https://deno.land/x/docker_registry_client/registry-client-v2.ts';
var REPO = 'alpine';
var client = new RegistryClientV2({name: REPO});

const tags = await client.listTags();
console.log(JSON.stringify(tags, null, 4));

If you need to authenticate, the RegistryClientV2 call might look more like this:

import { RegistryClientV2 } from 'https://deno.land/x/docker_registry_client/registry-client-v2.ts';

var client = new RegistryClientV2({
    name: 'alpine',
    // Optional basic auth to the registry
    username: <username>,
    password: <password>,
    // Optional, for a registry without a signed TLS certificate.
    // NOTE: Deno does not currently support this option
    // insecure: <true|false>,
    // ... see the source code for other options
});

NOTE: This module does not include v1 API support.

v2 API

A mapping of the Docker Registry API v2 endpoints to the API equivalents in this client lib.

Name / EndpointImplementedDescription
ping GET /v2/YesCheck that the endpoint implements Docker Registry API V2.
listTags GET /v2/<name>/tags/listYesFetch the tags under the repository identified by name.
getManifest GET /v2/<name>/manifests/<reference>YesFetch the manifest identified by name and reference where reference can be a tag or digest.
putManifest PUT /v2/<name>/manifests/<reference>YesPut the manifest identified by name and reference where reference can be a tag or digest.
deleteManifest DELETE /v2/<name>/manifests/<reference>YesDelete the manifest identified by name and reference where reference can be a tag or digest.
createBlobReadStream GET /v2/<name>/blobs/<digest>YesRetrieve the blob from the registry identified by digest.
headBlob HEAD /v2/<name>/blobs/<digest>YesRetrieve the blob from the registry identified by digest -- just the headers.
startBlobUpload POST /v2/<name>/blobs/uploads/YesInitiate a resumable blob upload. If successful, an upload location will be provided to complete the upload. Optionally, if the digest parameter is present, the request body will be used to complete the upload in a single request.
getBlobUploadStatus GET /v2/<name>/blobs/uploads/<uuid>NoRetrieve status of upload identified by uuid. The primary purpose of this endpoint is to resolve the current status of a resumable upload.
uploadBlobChunk PATCH /v2/<name>/blobs/uploads/<uuid>NoUpload a chunk of data for the specified upload.
completeBlobUpload PUT /v2/<name>/blobs/uploads/<uuid>YesComplete the upload specified by uuid, optionally appending the body as the final chunk.
cancelBlobUpload DELETE /v2/<name>/blobs/uploads/<uuid>NoCancel outstanding upload processes, releasing associated resources. If this is not called, the unfinished uploads will eventually timeout.
deleteBlob DELETE /v2/<name>/blobs/<digest>NoDelete the blob identified by name and digest. Warning: From the Docker spec I'm not sure that deleteBlob doesn't corrupt images if you delete a shared blob.
listRepositories GET /v2/_catalog/NoList all repositories in this registry. Spec.

For more code examples, check out the other folders in this Github repo.