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 #
- Sign in to HPE Machine Learning Inferencing Software.
- Navigate to Registries.
- Scroll to the registry you want to edit.
- Select the Ellipses icon.
- Select Open.
Via the CLI #
- Sign in via the CLI.
aioli user login <YOUR_USERNAME>
- Inspect the registry with the following command:
aioli registry list
- Scroll to the row of the registry you want to inspect.
Via the API #
- 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>" }'
- Obtain the Bearer token from the response.
- 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>'