starting the rename
This commit is contained in:
parent
99679fff2a
commit
7d706a0358
@ -1 +1 @@
|
|||||||
# node-sdc CLI Changelog
|
# node-triton changelog
|
||||||
|
6
Makefile
6
Makefile
@ -1,13 +1,13 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2014, Joyent, Inc. All rights reserved.
|
# Copyright (c) 2015, Joyent, Inc. All rights reserved.
|
||||||
#
|
#
|
||||||
# Makefile for node-sdc
|
# Makefile for node-triton
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# Vars, Tools, Files, Flags
|
# Vars, Tools, Files, Flags
|
||||||
#
|
#
|
||||||
JS_FILES := bin/sdc \
|
JS_FILES := bin/triton \
|
||||||
$(shell find lib -name '*.js' | grep -v '/tmp/')
|
$(shell find lib -name '*.js' | grep -v '/tmp/')
|
||||||
JSL_CONF_NODE = tools/jsl.node.conf
|
JSL_CONF_NODE = tools/jsl.node.conf
|
||||||
JSL_FILES_NODE = $(JS_FILES)
|
JSL_FILES_NODE = $(JS_FILES)
|
||||||
|
14
README.md
14
README.md
@ -1,5 +1,5 @@
|
|||||||
`sdc` is a CLI for Joyent SmartDataCenter and the
|
`triton` is a tool for Joyent's Triton (a.k.a. SmartDataCenter), either for on-premises installations
|
||||||
Joyent Public Cloud (<https://my.joyent.com>,
|
of Triton or Joyent's Public Cloud (<https://my.joyent.com>,
|
||||||
<http://www.joyent.com/products/compute-service>).
|
<http://www.joyent.com/products/compute-service>).
|
||||||
|
|
||||||
**This project is experimental and probably broken. For now, please look
|
**This project is experimental and probably broken. For now, please look
|
||||||
@ -8,15 +8,15 @@ at [node-smartdc](https://github.com/joyent/node-smartdc).**
|
|||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
1. Install [node.js](http://nodejs.org/).
|
1. Install [node.js](http://nodejs.org/).
|
||||||
2. `npm install -g sdc`
|
2. `npm install -g git://github.com/joyent/node-triton`
|
||||||
|
|
||||||
Verify that installed and is on your PATH:
|
Verify that installed and is on your PATH:
|
||||||
|
|
||||||
$ sdc --version
|
$ triton --version
|
||||||
sdc CLI 1.0.0
|
Triton client 1.0.0
|
||||||
|
|
||||||
Before you can used the CLI you'll need a Joyent account, an SSH key uploaded
|
Before you can used the CLI you'll need a Joyent account, an SSH key uploaded
|
||||||
and `sdc` configured with those account details.
|
and `triton` configured with those account details.
|
||||||
|
|
||||||
# Setup
|
# Setup
|
||||||
|
|
||||||
@ -27,7 +27,7 @@ TODO
|
|||||||
TODO
|
TODO
|
||||||
|
|
||||||
|
|
||||||
# node-sdc differences with node-smartdc
|
# node-triton differences with node-smartdc
|
||||||
|
|
||||||
- There is a single `sdc` command instead of a number of `sdc-FOO` commands.
|
- There is a single `sdc` command instead of a number of `sdc-FOO` commands.
|
||||||
- The `SDC_USER` envvar is accepted in preference to `SDC_ACCOUNT`.
|
- The `SDC_USER` envvar is accepted in preference to `SDC_ACCOUNT`.
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2014 Joyent Inc. All rights reserved.
|
* Copyright (c) 2015 Joyent Inc. All rights reserved.
|
||||||
*
|
*
|
||||||
* sdc command
|
* triton command
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var p = console.log;
|
var p = console.log;
|
||||||
@ -10,5 +10,5 @@ var cmdln = require('cmdln');
|
|||||||
var CLI = require('../lib/cli');
|
var CLI = require('../lib/cli');
|
||||||
|
|
||||||
if (require.main === module) {
|
if (require.main === module) {
|
||||||
cmdln.main(CLI, process.arg, {showCode: true});
|
cmdln.main(CLI, process.argv, {showCode: true});
|
||||||
}
|
}
|
@ -1,10 +0,0 @@
|
|||||||
---
|
|
||||||
title: sdcadm (Administer a SDC standup)
|
|
||||||
markdown2extras: wiki-tables, code-friendly, cuddled-lists, link-patterns
|
|
||||||
markdown2linkpatternsfile: link-patterns.txt
|
|
||||||
apisections:
|
|
||||||
---
|
|
||||||
|
|
||||||
# sdcadm
|
|
||||||
|
|
||||||
TODO
|
|
@ -1 +0,0 @@
|
|||||||
/([A-Z]+-\d+)/ https://devhub.joyent.com/jira/browse/\1
|
|
@ -1,12 +1,3 @@
|
|||||||
{
|
{
|
||||||
"defaultProfile": "env",
|
"defaultProfile": "env"
|
||||||
"dc": {
|
|
||||||
"us-east-1": "https://us-east-1.api.joyent.com",
|
|
||||||
"us-west-1": "https://us-west-1.api.joyent.com",
|
|
||||||
"us-sw-1": "https://us-sw-1.api.joyent.com",
|
|
||||||
"eu-ams-1": "https://eu-ams-1.api.joyent.com"
|
|
||||||
},
|
|
||||||
"dcAlias": {
|
|
||||||
"joyent": ["us-east-1", "us-sw-1", "us-west-1", "eu-ams-1"]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "sdc",
|
"name": "triton",
|
||||||
"description": "Joyent SmartDataCenter CLI (http://www.joyent.com/products/compute-service)",
|
"description": "Joyent Triton tool and client (http://www.joyent.com/products/compute-service)",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"author": "Joyent (joyent.com)",
|
"author": "Joyent (joyent.com)",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
Reference in New Issue
Block a user