Skip to content

TritonDataCenter/gosdc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gosdc

wercker status

gosdc is a Go client for Joyent's SmartDataCenter

Table of Contents

Usage

To create a client (*cloudapi.Client), you'll need a few things:

  1. your account ID
  2. the ID of the key associated with your account
  3. your private key material
  4. the cloud endpoint you want to use (for example https://us-east-1.api.joyentcloud.com)

Given these four pieces of information, you can initialize a client with the following:

package main

import (
	"io/ioutil"
	"log"
	"os"

	"github.com/joyent/gocommon/client"
	"github.com/joyent/gosdc/cloudapi"
	"github.com/joyent/gosign/auth"
)

func client(key, keyId, account, endpoint string) (*cloudapi.Client, error) {
	keyData, err := ioutil.ReadFile(key)
	if err != nil {
		return nil, err
	}
	userAuth, err := auth.NewAuth(account, string(keyData), "rsa-sha256")
	if err != nil {
		return nil, err
	}

	creds := &auth.Credentials{
		UserAuthentication: auth,
		SdcKeyId:           keyId,
		SdcEndpoint:        auth.Endpoint{URL: endpoint},
	}

	return cloudapi.New(client.NewClient(
		creds.SdcEndpoint.URL,
		cloudapi.DefaultAPIVersion,
		creds,
		log.New(os.Stderr, "", log.LstdFlags),
	)), nil
}

Examples

Projects using the gosdc API:

Resources

After creating a client, you can manipulate resources in the following ways:

Resource Create Read Update Delete Extra
Datacenters GetDatacenter, ListDatacenters
Firewall Rules CreateFirewallRule GetFirewallRule, ListFirewallRules, ListmachineFirewallRules UpdateFirewallRule, EnableFirewallRule, DisableFirewallRule DeleteFirewallRule
Instrumentations CreateInstrumentation GetInstrumentation, ListInstrumentations, GetInstrumentationHeatmap, GetInstrumentationHeatmapDetails, GetInstrumentationValue DeleteInstrumentation DescribeAnalytics
Keys CreateKey GetKey, ListKeys DeleteKey
Machines CreateMachine GetMachine, ListMachines, ListFirewallRuleMachines RenameMachine, ResizeMachine DeleteMachine CountMachines, MachineAudit, StartMachine, StartMachineFromSnapshot, StopMachine, RebootMachine
Machine (Images) CreateImageFromMachine GetImage, ListImages DeleteImage ExportImage
Machine (Metadata) GetMachineMetadata UpdateMachineMetadata DeleteMachineMetadata, DeleteAllMachineMetadata
Machine (Snapshots) CreateMachineSnapshot GetMachineSnapshot, ListMachineSnapshots DeleteMachineSnapshot
Machine (Tags) GetMachineTag, ListMachineTags AddMachineTags, ReplaceMachineTags DeleteMachineTag, DeleteMachineTags EnableFirewallMachine, DisableFirewallMachine
Networks GetNetwork, ListNetworks
Packages GetPackage, ListPackages

Contributing

Report bugs and request features using GitHub Issues, or contribute code via a GitHub Pull Request. Changes will be code reviewed before merging. In the near future, automated tests will be run, but in the meantime please go fmt, go lint, and test all contributions.

Developing

This library assumes a Go development environment setup based on How to Write Go Code. Your GOPATH environment variable should be pointed at your workspace directory.

You can now use go get github.com/joyent/gosdc to install the repository to the correct location, but if you are intending on contributing back a change you may want to consider cloning the repository via git yourself. This way you can have a single source tree for all Joyent Go projects with each repo having two remotes -- your own fork on GitHub and the upstream origin.

For example if your GOPATH is ~/src/joyent/go and you're working on multiple repos then that directory tree might look like:

~/src/joyent/go/
|_ pkg/
|_ src/
   |_ github.com
      |_ joyent
         |_ gocommon
         |_ gomanta
         |_ gosdc
         |_ gosign

Recommended Setup

$ mkdir -p ${GOPATH}/src/github.com/joyent
$ cd ${GOPATH}/src/github.com/joyent
$ git clone git@github.com:<yourname>/gosdc.git

# fetch dependencies
$ git clone git@github.com:<yourname>/gocommon.git
$ git clone git@github.com:<yourname>/gosign.git
$ go get -v -t ./...

# add upstream remote
$ cd gosdc
$ git remote add upstream git@github.com:joyent/gosdc.git
$ git remote -v
origin  git@github.com:<yourname>/gosdc.git (fetch)
origin  git@github.com:<yourname>/gosdc.git (push)
upstream        git@github.com:joyent/gosdc.git (fetch)
upstream        git@github.com:joyent/gosdc.git (push)

Run Tests

You can run the tests either locally or against live Triton. If you want to run the tests locally you'll want to generate an SSH key and pass the appropriate flags to the test harness as shown below.

cd ${GOPATH}/src/github.com/joyent/gosdc
ssh-keygen -b 2048 -C "Testing Key" -f test_key.id_rsa -t rsa -P ""
env KEY_NAME=`pwd`/test_key.id_rsa LIVE=false go test ./...

Build the Library

cd ${GOPATH}/src/github.com/joyent/gosdc
go build ./...

License

gosdc is licensed under the Mozilla Public License Version 2.0, a copy of which is available at LICENSE

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages