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 listOutput
| Field | Type | Description |
|---|---|---|
id | string | |
name | string | What this credential is called here. |
server | string | The registry's host, such as ghcr.io. Not a URL and not an image reference. |
username | string | |
createdAt | string | null | RFC 3339, UTC. |
Examples
What this team can pull with
outplane registry listCheck 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 textWhat 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:
| Exit | Kind | Meaning |
|---|---|---|
2 | usage | Invalid arguments, unknown flag, or client-side validation failure. |
3 | auth | Not authenticated, token revoked or expired, or forbidden for this team. |
8 | upstream | The 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.