New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

coreos-cluster

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coreos-cluster

Create a coreos cluster

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19
increased by111.11%
Maintainers
1
Weekly downloads
 
Created
Source

coreos-cluster

Create a fully functional core-os cluster on Rackspace Cloud from any node.js application. A command-line version of coreos-cluster is available on npm as coreos-cluster-cli.

Quick Example
var cluster = require('coreos-cluster');

cluster.createCluster({
  size: 10,
  type: 'performance',
  version: 'beta',
  keyname: 'my-ssh-keyname'
}, function(err, results) {
  // will callback with a functional cluster
});

Options

  • size - Optional. Size of the cluster in nodes, minimum/default of 3
  • type - Optional. performance or onMetal servers, defaults to performance vms
  • version - Optional. coreos version: stable (default), beta or alpha
  • keyname - Optional. Rackspace Cloud Servers SSH keyname. If not provided, will create a new ssh key and include in the results
  • flavor - Optional. The Rackspace Cloud Servers flavor. Defaults to performance1-1 flavor for performance and onmetal-compute1 for onMetal

Rackspace Cloud Credentials

coreos-cluster is built on pkgcloud@1.0.0 and will now make use of environment variables for the Rackspace credentials:

  • PKGCLOUD_RACKSPACE_USERNAME - Your rackspace username
  • PKGCLOUD_RACKSPACE_APIKEY - API Key for your account
  • PKGCLOUD_RACKSPACE_PASSWORD - Password may be used in lieu of API key
  • PKGCLOUD_RACKSPACE_REGION - Region for the coreos cluster
  • PKGCLOUD_RACKSPACE_AUTH_URL - Optional. Use an alternate authentication endpoint. See the Rackspace Endpoints for more endpoint information.
  • PKGCLOUD_RACKSPACE_USE_INTERNAL - Optional. Use the local service interface if calling from a Rackspace cloud server

Installation

npm install coreos-cluster

Next Steps

As coreos-cluster is built on pkgcloud, the next step is to add a provider option that allows you to use different compute providers within pkgcloud.

Keywords

FAQs

Package last updated on 14 Oct 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc