@sansitech/pkgcloud
Version:
A provider agnostic cloud library for Node.js
75 lines (56 loc) • 2.9 kB
Markdown

## Using the HP Helion Cloud provider in pkgcloud
The HP Helion Cloud provider in pkgcloud supports the following services:
* [**Compute**](compute.md) (cloud compute)
* [**Databases**](databases.md) (databases)
* [**Network**](network.md) (network)
* [**Storage**](storage.md) (object storage)
### Activating your HP Helion Cloud services
If this is your first time using HP Helion Cloud Services, please follow [this](https://community.hpcloud.com/article/hp-public-cloud-quick-start-guide) guide to get started.
### Getting Started with Compute
We've provided a [simple compute example](getting-started-compute.md) where it creates a couple of compute instances.
### Authentication
For all of the HP Cloud services, you create a client with the same options.
For key-based auth:
```Javascript
createClient({
provider: 'hp',
tenantId: 'your-tenant-id',
username: 'your-access-key',
apiKey: 'your-secret-key',
});
```
For password auth:
```Javascript
createClient({
provider: 'hp',
tenantId: 'your-tenant-id',
username: 'your-username',
password: 'your-password',
});
```
### Getting your API key
You can provision API keys in your cloud management console.
Please see [here](https://community.hpcloud.com/article/managing-your-access-keys) for more instructions.
### Authentication Endpoints and Regions
All of the HP `createClient` calls have a few options that can be provided:
#### authUrl
`authUrl` specifies the authentication endpoint used to create a token for your HP client.
See here for more details : [Regions](http://docs.hpcloud.com/api/identity/#2.2RegionsandAvailabilityZones)
If you're targeting an HP Private Cloud instance, please contact your administrator for the authUrl.
#### region
`region` specifies which region of a service to use. HP has services deployed in multiple regions.
See here for more details : [Regions](http://docs.hpcloud.com/api/identity/#2.2RegionsandAvailabilityZones)
If you're targeting an HP Private Cloud instance, please contact your administrator for region names.
##### Authenticating against the US-West endpoint
```Javascript
region: 'region-a.geo-1',
authUrl: 'https://region-a.geo-1.identity.hpcloudsvc.com:35357'
```
##### Authenticating against the US-East endpoint
```Javascript
region: 'region-b.geo-1',
authUrl: 'https://region-b.geo-1.identity.hpcloudsvc.com:35357'
```
### Tokens and Expiration
When you make your first call to a HP provider, your client is authenticated transparent to your API call. HP will issue you a token, with an expiration. When that token expires, the client will automatically re-authenticate and retrieve a new token. The caller shouldn't have to worry about this happening.