Connect to Existing Instance

Before You Start

  • Obtain the URL or External IP address of the HPE Machine Learning Inferencing Software platform instance you want to connect to.
  • Ensure that you have a username and password to log in to the platform.
  • Complete the Developer System Setup steps if you intend to use the CLI.

How to Connect to an Existing Instance

Via the UI

  1. Open a browser tab and input the URL provided by your administrator.
  2. Input your username and password.

Via the CLI

Via the API

  1. Open a terminal.
  2. Use the following cURL command to log in to the platform:
     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>"
     }'
  3. Obtain the Bearer token from the response.
  4. Use the Bearer token to perform other future API operations.