Show Registry

You can inspect a registry’s details, such as its name, access key, secret access key, and endpoint.

Before You Start

  • If using the API, obtain the registry’s ID before proceeding.

How to Edit a Registry

Via the UI

  1. Sign in to HPE Machine Learning Inferencing Software.
  2. Navigate to Registries.
  3. Scroll to the registry you want to edit.
  4. Select the Ellipses icon.
  5. Select Open.

Via the CLI

  1. Sign in via the CLI.
    aioli user login <YOUR_USERNAME>
  2. Inspect the registry with the following command:
     aioli registry list
  3. Scroll to the row of the registry you want to inspect.

Via the API

  1. Sign in to HPE Machine Learning Inferencing Software.
    curl -X 'POST' \
      '<YOUR_EXT_CLUSTER_IP>/api/v1/login' \
      -H 'accept: application/json' \
      -H 'Content-Type: application/json' \
      -d '{
      "username": "<YOUR_USERNAME>",
      "password": "<YOUR_PASSWORD>"
    }'
  2. Obtain the Bearer token from the response.
  3. Use the following cURL command to inspect a registry.
    curl -X 'GET' \
      '<YOUR_EXT_CLUSTER_IP>/api/v1/registries/<REGISTRY_ID>' \
       -H 'accept: application/json' \
       -H 'Authorization: Bearer <YOUR_ACCESS_TOKEN>'