@yawetse/pkgcloud
Version:
An infrastructure-as-a-service agnostic cloud library for node.js
51 lines (47 loc) • 1.21 kB
JavaScript
var pkgcloud = require('../../lib/pkgcloud');
var client = pkgcloud.database.createClient({
provider: 'rackspace',
username: 'bob',
key: '124'
});
client.getFlavors(function (err, flavors) {
//
// Look at the availables flavors for your instance
//
console.log(flavors);
//
// Lets choose the ID 1 for 512MB flavor
//
client.getFlavor(1, function (err, flavor) {
//
// Create the instance for host the databases.
//
client.createInstance({
name: 'test-instance',
flavor: flavor,
//
// Optional, you can choose the disk size for the instance
// (1 - 8) in GB. Default to 1
//
size: 3,
//
// Optional, you can give an array of database names for initialize
// when the instace is ready
//
databases: ['first-database', 'second-database']
}, function (err, instance) {
//
// At this point when the instance is ready we can manage the databases
//
client.createDatabase({
name: 'test-database',
instance: instance
}, function (err, database) {
//
// Log the result
//
console.log(database);
});
});
});
});