![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
coreos-cluster
Advanced tools
Create a fully functional CoreOs Cluster on Rackspace Cloud from any node.js application. A command-line version of coreos-cluster
is available on npm as coreos-cluster-cli
.
var cluster = require('coreos-cluster');
cluster.createCluster({
numNodes: 10,
type: 'performance',
release: 'beta',
keyname: 'my-ssh-keyname',
credentials: {
username: 'your-user-name',
apiKey: 'some-key-here',
region: 'iad'
}
}, function(err, results) {
// will callback with a functional cluster
});
numNodes
- required. Number of nodes. Clusters must have at least 3 nodestype
- Optional. performance
or onMetal
servers, defaults to performance
vmsrelease
- Optional. coreos release: 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 resultsflavor
- Optional. The Rackspace Cloud Servers flavor. Defaults to performance1-1
flavor for performance
and onmetal-compute1
for onMetal
privateNetwork
- Optional. Guid for a rackspace private network. Will configure etcd to use the private network.monitoringToken
- Optional. Will configure the nodes for Rackspace cloud monitoring.discoveryServiceUrl
- Optional. Url for an existing cluster's discovery service. Will add numNodes
to current cluster instead of create a new cluster.credentials
- Required. The credentials for the create cluster call
username
- Username for your rackspace accountapiKey
- Api key for your rackspace accountregion
- Region to create the cluster inuseInternal
- Optional, use local service net interface if calling from Rackspace Cloud machinesvar cluster = require('coreos-cluster');
cluster.createCluster({
numNodes: 10,
type: 'performance',
release: 'beta',
keyname: 'my-ssh-keyname',
discoveryServiceUrl: 'https://discovery.etcd.io/some-guid-here',
privateNetwork: '4c371711-44ae-15ab-86af-45438fb96a15',
monitoringToken: 'your-monitoring-token',
update: {
group: '0a809ab1-c01c-4a6b-8ac8-6b17cb9bae09',
server: 'https://customer.update.core-os.net/v1/update/'
},
credentials: {
username: 'your-user-name',
apiKey: 'some-key-here',
region: 'iad'
}
}, function(err, results) {
// will callback with a details of the added nodes
});
npm install coreos-cluster
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
.
FAQs
Create a coreos cluster
The npm package coreos-cluster receives a total of 0 weekly downloads. As such, coreos-cluster popularity was classified as not popular.
We found that coreos-cluster demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.