11
2- | ![ ] ( https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Anchor_pictogram_yellow.svg/156px-Anchor_pictogram_yellow.svg.png ) | Hephy Workflow is the open source fork of Deis Workflow.<br />Please [ go here] ( https://www.teamhephy .com/ ) for more detail. |
2+ | ![ ] ( https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Anchor_pictogram_yellow.svg/156px-Anchor_pictogram_yellow.svg.png ) | Drycc Workflow is the open source fork of Drycc Workflow.<br />Please [ go here] ( https://www.drycc .com/ ) for more detail. |
33| ---:| ---|
4- | 08/27/2018 | Team Hephy [ blog] [ ] comes online |
5- | 08/20/2018 | Deis [ #community slack] [ ] goes dark |
6- | 08/10/2018 | Hephy Workflow [ v2.19.4] [ ] fourth patch release |
7- | 08/08/2018 | [ Deis website] [ ] goes dark, then redirects to Azure Kubernetes Service |
8- | 08/01/2018 | Hephy Workflow [ v2.19.3] [ ] third patch release |
9- | 07/17/2018 | Hephy Workflow [ v2.19.2] [ ] second patch release |
10- | 07/12/2018 | Hephy Workflow [ v2.19.1] [ ] first patch release |
11- | 06/29/2018 | Hephy Workflow [ v2.19.0] [ ] first release in the open source fork of Deis |
12- | 06/16/2018 | Hephy Workflow [ v2.19] [ ] series is announced |
13- | 03/01/2018 | End of Deis Workflow maintenance: critical patches no longer merged |
14- | 12/11/2017 | Team Hephy [ slack community] [ ] invites first volunteers |
15- | 09/07/2017 | Deis Workflow [ v2.18] [ ] final release before entering maintenance mode |
16- | 09/06/2017 | Team Hephy [ slack community] [ ] comes online |
4+ | 08/27/2018 | Team Drycc [ blog] [ ] comes online |
5+ | 08/20/2018 | Drycc [ #community slack] [ ] goes dark |
6+ | 08/10/2018 | Drycc Workflow [ v2.19.4] [ ] fourth patch release |
7+ | 08/08/2018 | [ Drycc website] [ ] goes dark, then redirects to Azure Kubernetes Service |
8+ | 08/01/2018 | Drycc Workflow [ v2.19.3] [ ] third patch release |
9+ | 07/17/2018 | Drycc Workflow [ v2.19.2] [ ] second patch release |
10+ | 07/12/2018 | Drycc Workflow [ v2.19.1] [ ] first patch release |
11+ | 06/29/2018 | Drycc Workflow [ v2.19.0] [ ] first release in the open source fork of Drycc |
12+ | 06/16/2018 | Drycc Workflow [ v2.19] [ ] series is announced |
13+ | 03/01/2018 | End of Drycc Workflow maintenance: critical patches no longer merged |
14+ | 12/11/2017 | Team Drycc [ slack community] [ ] invites first volunteers |
15+ | 09/07/2017 | Drycc Workflow [ v2.18] [ ] final release before entering maintenance mode |
16+ | 09/06/2017 | Team Drycc [ slack community] [ ] comes online |
1717
1818# Controller Go SDK
19- [ ![ Build Status] ( https://ci.deis.io /buildStatus/icon?job=Deis /controller-sdk-go/master )] ( https://ci.deis.io /job/Deis /job/controller-sdk-go/job/master/ )
20- [ ![ codecov] ( https://codecov.io/gh/deis /controller-sdk-go/branch/master/graph/badge.svg )] ( https://codecov.io/gh/deis /controller-sdk-go )
21- [ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/teamhephy /controller-sdk-go )] ( https://goreportcard.com/report/github.com/teamhephy /controller-sdk-go )
22- [ ![ codebeat badge] ( https://codebeat.co/badges/2fdee091-714d-4860-ab19-dba7587a3158 )] ( https://codebeat.co/projects/github-com-deis -controller-sdk-go )
23- [ ![ GoDoc] ( https://godoc.org/github.com/teamhephy /controller-sdk-go?status.svg )] ( https://godoc.org/github.com/teamhephy /controller-sdk-go )
19+ [ ![ Build Status] ( https://ci.drycc.cc /buildStatus/icon?job=Drycc /controller-sdk-go/master )] ( https://ci.drycc.cc /job/Drycc /job/controller-sdk-go/job/master/ )
20+ [ ![ codecov] ( https://codecov.io/gh/drycc /controller-sdk-go/branch/master/graph/badge.svg )] ( https://codecov.io/gh/drycc /controller-sdk-go )
21+ [ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/drycc /controller-sdk-go )] ( https://goreportcard.com/report/github.com/drycc /controller-sdk-go )
22+ [ ![ codebeat badge] ( https://codebeat.co/badges/2fdee091-714d-4860-ab19-dba7587a3158 )] ( https://codebeat.co/projects/github-com-drycc -controller-sdk-go )
23+ [ ![ GoDoc] ( https://godoc.org/github.com/drycc /controller-sdk-go?status.svg )] ( https://godoc.org/github.com/drycc /controller-sdk-go )
2424
25- This is the Go SDK for interacting with the [ Hephy Controller] ( https://github.com/teamhephy /controller ) .
25+ This is the Go SDK for interacting with the [ Drycc Controller] ( https://github.com/drycc /controller ) .
2626
2727### Usage
2828
2929``` go
30- import deis " github.com/teamhephy /controller-sdk-go"
31- import " github.com/teamhephy /controller-sdk-go/apps"
30+ import drycc " github.com/drycc /controller-sdk-go"
31+ import " github.com/drycc /controller-sdk-go/apps"
3232```
3333
34- Construct a deis client to interact with the controller API. Then, get the first 100 apps the user has access to.
34+ Construct a drycc client to interact with the controller API. Then, get the first 100 apps the user has access to.
3535
3636``` go
3737// Verify SSL, Controller URL, API Token
38- client , err := deis .New (true , " deis .test.io" , " abc123" )
38+ client , err := drycc .New (true , " drycc .test.io" , " abc123" )
3939if err != nil {
4040 log.Fatal (err)
4141}
@@ -48,15 +48,15 @@ if err != nil {
4848### Authentication
4949
5050``` go
51- import deis " github.com/teamhephy /controller-sdk-go"
52- import " github.com/teamhephy /controller-sdk-go/auth"
51+ import drycc " github.com/drycc /controller-sdk-go"
52+ import " github.com/drycc /controller-sdk-go/auth"
5353```
5454
5555If you don't already have a token for a user, you can retrieve one with a username and password.
5656
5757``` go
5858// Create a client with a blank token to pass to login.
59- client , err := deis .New (true , " deis .test.io" , " " )
59+ client , err := drycc .New (true , " drycc .test.io" , " " )
6060if err != nil {
6161 log.Fatal (err)
6262}
@@ -68,22 +68,22 @@ if err != nil {
6868client.Token = token
6969```
7070
71- For a complete usage guide to the SDK, see [ full package documentation] ( https://godoc.org/github.com/teamhephy /controller-sdk-go ) .
71+ For a complete usage guide to the SDK, see [ full package documentation] ( https://godoc.org/github.com/drycc /controller-sdk-go ) .
7272
73- [ v2.18 ] : https://github.com/teamhephy /workflow/releases/tag/v2.18.0
73+ [ v2.18 ] : https://github.com/drycc /workflow/releases/tag/v2.18.0
7474[ k8s-home ] : http://kubernetes.io
7575[ install-k8s ] : http://kubernetes.io/gettingstarted/
7676[ mkdocs ] : http://www.mkdocs.org/
77- [ issues ] : https://github.com/teamhephy /workflow/issues
78- [ prs ] : https://github.com/teamhephy /workflow/pulls
79- [ Deis website] : http://deis .com/
80- [ blog ] : https://blog.teamhephy .info/blog/
81- [ #community slack ] : https://slack.deis.io /
82- [ slack community ] : https://slack.teamhephy .com/
83- [ v2.18 ] : https://github.com/teamhephy /workflow/releases/tag/v2.18.0
84- [ v2.19 ] : https://web.teamhephy .com
77+ [ issues ] : https://github.com/drycc /workflow/issues
78+ [ prs ] : https://github.com/drycc /workflow/pulls
79+ [ Drycc website] : http://drycc .com/
80+ [ blog ] : https://blog.drycc .info/blog/
81+ [ #community slack ] : https://slack.drycc.cc /
82+ [ slack community ] : https://slack.drycc .com/
83+ [ v2.18 ] : https://github.com/drycc /workflow/releases/tag/v2.18.0
84+ [ v2.19 ] : https://web.drycc .com
8585[ v2.19.0 ] : https://gist.github.com/Cryptophobia/24c204583b18b9fc74c629fb2b62dfa3/revisions
86- [ v2.19.1 ] : https://github.com/teamhephy /workflow/releases/tag/v2.19.1
87- [ v2.19.2 ] : https://github.com/teamhephy /workflow/releases/tag/v2.19.2
88- [ v2.19.3 ] : https://github.com/teamhephy /workflow/releases/tag/v2.19.3
89- [ v2.19.4 ] : https://github.com/teamhephy /workflow/releases/tag/v2.19.4
86+ [ v2.19.1 ] : https://github.com/drycc /workflow/releases/tag/v2.19.1
87+ [ v2.19.2 ] : https://github.com/drycc /workflow/releases/tag/v2.19.2
88+ [ v2.19.3 ] : https://github.com/drycc /workflow/releases/tag/v2.19.3
89+ [ v2.19.4 ] : https://github.com/drycc /workflow/releases/tag/v2.19.4
0 commit comments