-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from j-griffith/overhaul
Overhaul
- Loading branch information
Showing
246 changed files
with
41,140 additions
and
28,985 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
vendor/ | ||
_bin/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
# Gopkg.toml example | ||
# | ||
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md | ||
# for detailed Gopkg.toml documentation. | ||
# | ||
# required = ["github.com/user/thing/cmd/thing"] | ||
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] | ||
# | ||
# [[constraint]] | ||
# name = "github.com/user/project" | ||
# version = "1.0.0" | ||
# | ||
# [[constraint]] | ||
# name = "github.com/user/project2" | ||
# branch = "dev" | ||
# source = "github.com/myfork/project2" | ||
# | ||
# [[override]] | ||
# name = "github.com/x/y" | ||
# version = "2.4.0" | ||
|
||
|
||
[[constraint]] | ||
name = "github.com/Sirupsen/logrus" | ||
version = "1.0.4" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/docker/go-plugins-helpers" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/mitchellh/mapstructure" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/rackspace/gophercloud" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.PHONY: all clean | ||
|
||
all: cinder | ||
|
||
cinder: | ||
if [ ! -d ./vendor ]; then dep ensure; fi | ||
go build -i -o _bin/cdd | ||
|
||
clean: | ||
go clean -r -x | ||
-rm -rf _bin/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"Endpoint": "http://172.16.140.245:5000/v2.0", | ||
"Endpoint": "http://10.117.36.27/identity/v3", | ||
"Username": "admin", | ||
"Password": "solidfire", | ||
"TenantID": "092eb256b5b9402abe57d59f58ae3dbc", | ||
"Password": "nomoresecret", | ||
"TenantID": "f90c6e1559594a198f2a8c9228002bcf", | ||
"Region": "RegionOne" | ||
} |
Oops, something went wrong.