Skip to content

Commit 1ce7d8e

Browse files
committed
chore(controller-sdk): Moving to teamhephy org - links and glide
1 parent 89b1a85 commit 1ce7d8e

40 files changed

Lines changed: 143 additions & 110 deletions

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
FROM quay.io/deis/go-dev:v0.21.0
1+
FROM hephy/go-dev:v0.21.0
22
# This Dockerfile is used to bundle the source and all dependencies into an image for testing.
33

44
ADD https://codecov.io/bash /usr/local/bin/codecov
55
RUN chmod +x /usr/local/bin/codecov
66

7-
COPY glide.yaml /go/src/github.com/deis/controller-sdk-go/
8-
COPY glide.lock /go/src/github.com/deis/controller-sdk-go/
7+
COPY glide.yaml /go/src/github.com/teamhephy/controller-sdk-go/
8+
COPY glide.lock /go/src/github.com/teamhephy/controller-sdk-go/
99

10-
WORKDIR /go/src/github.com/deis/controller-sdk-go
10+
WORKDIR /go/src/github.com/teamhephy/controller-sdk-go
1111

1212
RUN glide install --strip-vendor
1313

1414
COPY ./_scripts /usr/local/bin
1515

16-
COPY . /go/src/github.com/deis/controller-sdk-go
16+
COPY . /go/src/github.com/teamhephy/controller-sdk-go

Jenkinsfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ def sh = { cmd ->
55
}
66

77
// Disabling until we have a more sustainable Windows Jenkins Agent plan
8-
// See https://github.com/deis/jenkins-jobs/issues/351
8+
// See https://github.com/teamhephy/jenkins-jobs/issues/351
99
// node('windows') {
1010
// def gopath = pwd() + "\\gopath"
1111
// env.GOPATH = gopath
12-
// def workdir = gopath + "\\src\\github.com\\deis\\controller-sdk-go"
12+
// def workdir = gopath + "\\src\\github.com\\teamhephy\\controller-sdk-go"
1313
//
1414
// def pscmd = { String cmd ->
1515
// "powershell -NoProfile -ExecutionPolicy Bypass -Command \"${cmd}\""
@@ -127,7 +127,7 @@ def mktmp = {
127127
}
128128

129129
node('linux') {
130-
def author = "deis"
130+
def author = "teamhephy"
131131
def flags = ""
132132

133133
if (git_branch != "master") {
@@ -139,14 +139,14 @@ node('linux') {
139139
def tmp_dir = mktmp()
140140
def dist_dir = "-e DIST_DIR=/upload -v ${tmp_dir}:/upload"
141141

142-
def pattern = "github\\.com\\/deis\\/controller-sdk-go\\n\\s+version:\\s+[a-f0-9]+"
143-
def replacement = "github\\.com\\/deis\\/controller-sdk-go\\n"
142+
def pattern = "github\\.com\\/teamhephy\\/controller-sdk-go\\n\\s+version:\\s+[a-f0-9]+"
143+
def replacement = "github\\.com\\/teamhephy\\/controller-sdk-go\\n"
144144
replacement += " repo: https:\\/\\/github\\.com\\/${author}\\/controller-sdk-go\\.git\\n"
145145
replacement += " vcs: git\\n"
146146
replacement += " version: ${git_commit}"
147147

148148
def build_script = "sh -c 'perl -i -0pe \"s/${pattern}/${replacement}/\" glide.yaml "
149-
build_script += "&& rm -rf glide.lock vendor/github.com/deis/controller-sdk-go "
149+
build_script += "&& rm -rf glide.lock vendor/github.com/teamhephy/controller-sdk-go "
150150
build_script += "&& glide install "
151151
build_script += "&& make build-revision'"
152152
sh "docker pull ${wcli_image}"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# the filepath to this repository, relative to $GOPATH/src
2-
repo_path = github.com/deis/controller-sdk-go
2+
repo_path = github.com/teamhephy/controller-sdk-go
33

44
REVISION ?= $(shell git rev-parse --short HEAD)
55
REGISTRY ?= quay.io/

README.md

Lines changed: 38 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,34 @@
11

2-
|![](https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Warning.svg/156px-Warning.svg.png) | Deis Workflow will soon no longer be maintained.<br />Please [read the announcement](https://deis.com/blog/2017/deis-workflow-final-release/) for more detail. |
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. |
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 |
415
| 09/07/2017 | Deis Workflow [v2.18][] final release before entering maintenance mode |
5-
| 03/01/2018 | End of Workflow maintenance: critical patches no longer merged |
16+
| 09/06/2017 | Team Hephy [slack community][] comes online |
617

718
# Controller Go SDK
819
[![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/)
920
[![codecov](https://codecov.io/gh/deis/controller-sdk-go/branch/master/graph/badge.svg)](https://codecov.io/gh/deis/controller-sdk-go)
10-
[![Go Report Card](https://goreportcard.com/badge/github.com/deis/controller-sdk-go)](https://goreportcard.com/report/github.com/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)
1122
[![codebeat badge](https://codebeat.co/badges/2fdee091-714d-4860-ab19-dba7587a3158)](https://codebeat.co/projects/github-com-deis-controller-sdk-go)
12-
[![GoDoc](https://godoc.org/github.com/deis/controller-sdk-go?status.svg)](https://godoc.org/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)
1324

14-
This is the Go SDK for interacting with the [Deis Controller](https://github.com/deis/controller).
25+
This is the Go SDK for interacting with the [Hephy Controller](https://github.com/teamhephy/controller).
1526

1627
### Usage
1728

1829
```go
19-
import deis "github.com/deis/controller-sdk-go"
20-
import "github.com/deis/controller-sdk-go/apps"
30+
import deis "github.com/teamhephy/controller-sdk-go"
31+
import "github.com/teamhephy/controller-sdk-go/apps"
2132
```
2233

2334
Construct a deis client to interact with the controller API. Then, get the first 100 apps the user has access to.
@@ -37,8 +48,8 @@ if err != nil {
3748
### Authentication
3849

3950
```go
40-
import deis "github.com/deis/controller-sdk-go"
41-
import "github.com/deis/controller-sdk-go/auth"
51+
import deis "github.com/teamhephy/controller-sdk-go"
52+
import "github.com/teamhephy/controller-sdk-go/auth"
4253
```
4354

4455
If you don't already have a token for a user, you can retrieve one with a username and password.
@@ -57,6 +68,22 @@ if err != nil {
5768
client.Token = token
5869
```
5970

60-
For a complete usage guide to the SDK, see [full package documentation](https://godoc.org/github.com/deis/controller-sdk-go).
71+
For a complete usage guide to the SDK, see [full package documentation](https://godoc.org/github.com/teamhephy/controller-sdk-go).
6172

62-
[v2.18]: https://github.com/deis/workflow/releases/tag/v2.18.0
73+
[v2.18]: https://github.com/teamhephy/workflow/releases/tag/v2.18.0
74+
[k8s-home]: http://kubernetes.io
75+
[install-k8s]: http://kubernetes.io/gettingstarted/
76+
[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
85+
[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

api/certs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package api
22

3-
import "github.com/deis/controller-sdk-go/pkg/time"
3+
import "github.com/teamhephy/controller-sdk-go/pkg/time"
44

55
// Cert is the definition of the cert object.
66
// Some fields are omtempty because they are only

api/ps.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package api
22

3-
import "github.com/deis/controller-sdk-go/pkg/time"
3+
import "github.com/teamhephy/controller-sdk-go/pkg/time"
44

55
// ProcessType represents the key/value mappings of a process type to a process inside
66
// a Heroku Procfile.

api/ps_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"sort"
55
"testing"
66

7-
"github.com/deis/controller-sdk-go/pkg/time"
7+
"github.com/teamhephy/controller-sdk-go/pkg/time"
88
)
99

1010
func TestPodsListSorted(t *testing.T) {

apps/apps.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"io/ioutil"
99
"strconv"
1010

11-
deis "github.com/deis/controller-sdk-go"
12-
"github.com/deis/controller-sdk-go/api"
11+
deis "github.com/teamhephy/controller-sdk-go"
12+
"github.com/teamhephy/controller-sdk-go/api"
1313
)
1414

1515
// ErrNoLogs is returned when logs are missing from an app.

apps/apps_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"reflect"
99
"testing"
1010

11-
deis "github.com/deis/controller-sdk-go"
12-
"github.com/deis/controller-sdk-go/api"
11+
deis "github.com/teamhephy/controller-sdk-go"
12+
"github.com/teamhephy/controller-sdk-go/api"
1313
)
1414

1515
const appFixture string = `

appsettings/appsettings.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"encoding/json"
66
"fmt"
77

8-
deis "github.com/deis/controller-sdk-go"
9-
"github.com/deis/controller-sdk-go/api"
8+
deis "github.com/teamhephy/controller-sdk-go"
9+
"github.com/teamhephy/controller-sdk-go/api"
1010
)
1111

1212
// List lists an app's settings.

0 commit comments

Comments
 (0)