Out Plane
registry

registry list

List the team's private registry credentials.

read onlyrepeatable

The team's stored registry logins, with the server and username of each.

No password is returned, here or anywhere else. An empty list means every image this team runs is public.

Usage

outplane registry list

Output

FieldTypeDescription
idstring
namestringWhat this credential is called here.
serverstringThe registry's host, such as ghcr.io. Not a URL and not an image reference.
usernamestring
createdAtstring | nullRFC 3339, UTC.

Examples

What this team can pull with

outplane registry list

Check whether a registry is covered, in a script

outplane registry list --json --fields name,server
{
  "items": [
    {
      "name": "ghcr",
      "server": "ghcr.io"
    }
  ],
  "total": 1,
  "truncated": false
}

See who each one logs in as

outplane registry list -o text

What to Know

  • No password is ever returned, by this or any other command. A credential is replaced rather than inspected.
  • An empty list is not an error. It means every image this team runs is public.
  • The credential is chosen by the platform when an image is pulled, by matching the server. Nothing binds one to an application here.

Errors

Beyond 0 for success, this command exits with:

ExitKindMeaning
2usageInvalid arguments, unknown flag, or client-side validation failure.
3authNot authenticated, token revoked or expired, or forbidden for this team.
8upstreamThe Out Plane API returned a server error.

The code on the error object is one of context.no_team. Branch on that, or on the exit status. The message is prose and changes.

On this page