Search
Denis Choukroun

HPE Container Platform REST API – Part 1: Authenticating

May 26, 2020

image001

Editor’s Note – HPE Ezmeral Container Platform is now HPE Ezmeral Runtime Enterprise. For more information on why the name was changed, please click here.

Businesses are challenged today with being able to run their existing monolithic applications alongside their cloud-native apps in hybrid cloud environments. The HPE Container Platform (HPE CP) uses container technology to make it simpler and more cost-effective to deploy, run and manage both cloud native microservices enterprise workloads and non-cloud native monolithic applications with containers. Businesses can take advantage of the HPE Container Platform for a variety of use cases, including machine learning (ML), data analytics, and DevOps workloads. Its abilities make the HPE Container Platform ideal for helping IT accelerate their application development and deployment on containers on-demand through a self-service portal.

In this two-part blog series, I am going to discuss how the HPE Container Platform exposes a RESTful API that provides programmable access to capabilities via a self-service portal. I will then share some recent learnings and experience doing this.

Note: This series does not cover how to perform IT administrative tasks through the HPE CP REST API.

These blog posts are targeted at developers who want to get started with the REST API so they can interact with the HPE Container Platform programmatically. This series is also designed for solution architects who simply want to understand the product from a developer and data scientist’s perspective so they can discuss its capabilities with their customers’ developers and data analysts.

In the first part of the series, you will interact with the HPE CP REST API using a handy graphical tool called Postman. You will also have the opportunity to use cURL (Command-line URL), the universal and well-appreciated command-line utility from the Linux community. In the second part, I will go a step further to explain how you can use this REST API to deploy containerized applications using a programmatic approach.

If you are not already familiar with REST API calls and Postman, I encourage you to check out the Understanding API basics and the value they provide article. It explains REST API concepts such as HTTP verbs you call against a REST API service, the headers and payloads, and how to use Postman to make REST API calls.

The HPE Container Platform High-Level Architecture

The diagram below depicts a simplified view of the physical architecture within the HPE Container Platform being deployed for this tutorial. It illustrates how you can interact programmatically with the HPE Container Platform.

picture2

The HPE Controller Platform deployment includes the following key components:

  • The Controller host manages all the hosts that comprise the HPE Container Platform deployment.
  • The Kubernetes (K8s) hosts are under the direct control of the Controller host. These hosts can be grouped into one or more distinct Kubernetes clusters that run containerized applications.
  • The Gateway host acts as a proxy server that carries client requests, i.e. HPE CP UI, REST API, K8s API (kubectl commands) to the HPE Container Platform controller, to one of the Kubernetes clusters, or to one of the containerized application services running in one of the Kubernetes clusters. Containerized application service endpoints are exposed outside the Kubernetes cluster to users via the gateway re-mapped ports.
  • The Authentication Proxy handles user authentication and forwards authenticated K8s API traffic (kubectl commands) to the Kubernetes cluster master and returns any responses to the request back to the user.
  • The HPE Data Fabric (a MapR File System) is a storage provider for persistent volumes for the containerized applications that require persistence of data. The default StorageClass is available out of the box from the HPE Data Fabric (MapR) using the HPE Container Storage Interface (CSI) driver for MapR.

The HPE Container Platform REST API Reference

The HPE CP REST API allows you to execute multiple actions programmatically, from performing administrative tasks like creating Kubernetes clusters to deploying applications for various use cases in a shared multi-tenant environment.

Before you can call the HPE CP REST API, you need to know what calls can be placed. The REST API reference documentation describes each object type, along with the supported operations, request input parameters, response model, and response codes.

To access the HPE CP REST API reference documentation, obtain the IP address or hostname of the HPE Container Platform Gateway host or Controller host from the platform administrator. Then, in a web browser, navigate to the following URL: http(s)://Gateway-or-Controller-IP-address-or-fqdn/apidocs. Access protocols for the HPE Container Platform REST API reference documentation varies depending on whether your platform has been configured to use HTTPS secure protocol (recommended) or non-secure HTTP protocol.

Session Authentication

With the exception of some REST API calls, most of the API calls you can do against the HPE CP REST API must be authenticated with a sort of token that is retrieved by sending a username, password, and tenant name to the HPE CP API server. The HPE Container Platform uses a session location to identify the working tenant context of a given REST API operation. The session location is then stored in the HTTP header of subsequent requests to perform Create, Read, Update, and Delete (CRUD) operations using HTTP verbs, such as POST, GET, PUT, PATCH, and DELETE.

A tenant is a group of users created by the platform administrator. A tenant is allocated a quota of resources such as CPU, GPU, memory, storage, and Kubernetes clusters resources. A tenant can represent, for example, an office location, a business unit, a department, or a project. Tenant users can then deploy applications within the context of their tenant. Once a resource is actively in use by one tenant, it will not be shared with other tenants. The platform administrator assigns users roles (tenant Member or Tenant Admin) and tenant membership through either LDAP/AD authentication groups or local directory user accounts.

A working context establishes the user identity, its tenant name, and role (member or admin). Based on this context, tenant users are granted privileges and permissions to create and manage resources for their tenant on Kubernetes clusters managed by HPE CP.

You request an authentication session location by issuing an authentication request for a new login session, providing your username/password credentials and your tenant name in the JSON body.

This is confirmed by looking at the HPE CP REST API reference documentation for session object: POST /api/v2/session.

picture3

You then get the session location (in the form /api/v2/session/sessionId) from the JSON response header with a status 201 (created), which means that the session object has been created successfully as the result of the HTTP POST request. This is also confirmed by looking at the REST API reference guide, as you can see below:

picture4

You then extract and save the session location value from the JSON response header. For each subsequent call, you set a new HTTP header with its key set to X-BDS-SESSION and its value set to the session location value. This will set the working tenant context for your request.

Now, let’s put it into action with Postman:

The REST API calls shown below explicitly specify JSON as the exchange format between the API client (Postman) and the API server (HPE Container Platform).

The communication with REST API is HTTP or HTTP over HTTPS on port 8080. The communication protocol varies depending on whether your platform has been configured to use HTTPS secure protocol (recommended) or non-secure HTTP protocol.

All the API calls are in the form:

  • An HTTP verb such as GET, POST, DELETE, PATCH, UPDATE, PUT
  • The target REST API object URL: http(s)://Gateway-IP-or-fqdn:8080/api/v2/object

picture5

In the example here, I am acting as a tenant user and I request an authentication session location through a POST /api/v2/session API call. The user credentials and tenant name are provided in the request body using Postman Environment variables:

picture6

When you click the Send button, you get the response, 201 created, in the response body, which means the session resource was successfully created.

picture7

The response header provides the resource path for the created session object in the form /api/v2/session/SessionId.

picture8

All subsequent REST API calls will need to specify the session location resource path in their headers to use as working tenant context. The REST API call must include an X-BDS-SESSION header with the value of the session object’s resource path /api/v2/session/SessionId previously created. In the example below, the GET REST API call request will fetch information about the session you have just established with the HPE Container Platform as a tenant user:

picture9

As tenant user, the response body lists information about your session, such as your username, tenant name, and expiration time. Notice that the session location token will remain valid for 1440 minutes (or 24 hours), after which time you will have to establish a new login session.

picture10

From Postman to code

You may ask yourself, how do these calls translate into code you can use in your own application? Postman can help with that thanks to its embedded code-generators. Imagine you have been experimenting with a POST session request in Postman and you would like to run the same POST call from cURL in a script or from other code languages. As shown in the picture below, Postman lets you generate snippets of code in various languages and frameworks that will help you do this. You can use the Code link under the blue Send button to open the GENERATE CODE SNIPPETS and select your preferred language or framework. In the rest of this blog, cURL is used as the preferred script language.

picture11

curl –k –i –s --location --request POST 'http(s)://<Gateway-IP-Address-or-fqdn>:8080/api/v2/session' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "<YourUSername>",
    "password": "<YourPassword>",
    "tenant_name": "<YourTenantName>"
}'

An example of the response header received is shown below:

picture12

Extract the session location path value /api/v2/session/<sessionId> from the header response and use it in any subsequent REST API calls. As shown by the example below, you can use a GET REST API call for object /api/v2/session to fetch information about the session you have just established with the HPE Container Platform as a tenant user. You can combine cURL command with jq as the command line JSON processor to parse the JSON body responses and obtain a structured print of the output as shown here:

curl -k -s --location --request GET 'http(s)://<Gateway-IP-Address-or-fqdn>:8080/api/v2/session' \
--header 'X-BDS-SESSION: /api/v2/session/<SessionId>' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' | jq

picture13

Although sessions have a time to live (TTL) of 24 hours, it is a best practice in REST API programming to cleanup and delete those sessions when done with your REST API calls. You can use a DELETE call to the target object /api/v2/session/SessionId to achieve this:

curl -k -i -s --request DELETE 'http(s)://<Gateway-IP-Address-or-fqdn>:8080/api/v2/<SessionId>' \
--header 'X-BDS-SESSION: /api/v2/session/<SessionId>' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'

You have now learned the basics of programmatic access to the HPE Container Platform through its REST API. In the next article in this series, I will discuss how you can deploy programmatically cloud native stateless, microservices-based applications and non-cloud native distributed, stateful applications within the context of Kubernetes clusters managed by the HPE Container Platform.
You can stay up to date with the latest news from HPE DEV by signing up for our monthly newsletter. In it, you will receive more awesome developer and data scientist focused posts about the HPE Container Platform. You can also follow our community on Twitter and join the conversation on our HPE DEV Slack Channel.

Related

Ted Dunning & Ellen Friedman

3 ways a data fabric enables a data-first approach

Mar 15, 2022
Nicolas Perez

A Functional Approach to Logging in Apache Spark

Feb 5, 2021
Cenz Wong

Getting Started with DataTaps in Kubernetes Pods

Jul 6, 2021
Kiran Kumar Mavatoor

Accessing HPE Ezmeral Data Fabric Object Storage from Spring Boot S3 Micro Service deployed in K3s cluster

Sep 13, 2021
Carol McDonald

An Inside Look at the Components of a Recommendation Engine

Jan 22, 2021
Carol McDonald

Analyzing Flight Delays with Apache Spark GraphFrames and MapR Database

Dec 16, 2020
Nicolas Perez

Apache Spark as a Distributed SQL Engine

Jan 7, 2021
Carol McDonald

Apache Spark Machine Learning Tutorial

Nov 25, 2020

HPE Developer Newsletter

Stay in the loop.

Sign up for the HPE Developer Newsletter or visit the Newsletter Archive to see past content.

By clicking on “Subscribe Now”, I agree to HPE sending me personalized email communication about HPE and select HPE-Partner products, services, offers and events. I understand that my email address will be used in accordance with HPE Privacy Statement. You may unsubscribe from receiving HPE and HPE-Partner news and offers at any time by clicking on the Unsubscribe button at the bottom of the newsletter.

For more information on how HPE manages, uses, and protects your personal data please refer to HPE Privacy Statement.