Skip to content

Commit 511ea0e

Browse files
author
Madison Steiner
committed
Update URLs
1 parent 89b1a85 commit 511ea0e

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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/deisthree/jenkins-jobs/issues/351
99
// node('windows') {
1010
// def gopath = pwd() + "\\gopath"
1111
// env.GOPATH = gopath

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[![codebeat badge](https://codebeat.co/badges/2fdee091-714d-4860-ab19-dba7587a3158)](https://codebeat.co/projects/github-com-deis-controller-sdk-go)
1212
[![GoDoc](https://godoc.org/github.com/deis/controller-sdk-go?status.svg)](https://godoc.org/github.com/deis/controller-sdk-go)
1313

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

1616
### Usage
1717

@@ -59,4 +59,4 @@ client.Token = token
5959

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

62-
[v2.18]: https://github.com/deis/workflow/releases/tag/v2.18.0
62+
[v2.18]: https://github.com/deisthree/workflow/releases/tag/v2.18.0

apps/apps.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var ErrNoLogs = errors.New(
1818
1) Logger and fluentd pods are running: kubectl --namespace=deis get pods.
1919
2) The application is writing logs to the logger component by checking that an entry in the ring buffer was created: kubectl --namespace=deis logs <logger pod>
2020
3) Making sure that the container logs were mounted properly into the fluentd pod: kubectl --namespace=deis exec <fluentd pod> ls /var/log/containers
21-
3a) If the above command returns saying /var/log/containers cannot be found then please see the following github issue for a workaround: https://github.com/deis/logger/issues/50`)
21+
3a) If the above command returns saying /var/log/containers cannot be found then please see the following github issue for a workaround: https://github.com/deisthree/logger/issues/50`)
2222

2323
// List lists apps on a Deis controller.
2424
func List(c *deis.Client, results int) (api.Apps, int, error) {

appsettings/appsettings_test.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const appSettingsFixture string = `
2020
"routable": true,
2121
"whitelist": ["1.2.3.4", "0.0.0.0/0"],
2222
"autoscale": {"cmd": {"min": 3, "max": 8, "cpu_percent": 40}},
23-
"label": {"git_repo": "https://github.com/deis/controller-sdk-go", "team" : "deis"},
23+
"label": {"git_repo": "https://github.com/deisthree/controller-sdk-go", "team" : "deis"},
2424
"created": "2014-01-01T00:00:00UTC",
2525
"updated": "2014-01-01T00:00:00UTC",
2626
"uuid": "de1bf5b5-4a72-4f94-a10c-d2a3741cdf75"
@@ -35,15 +35,15 @@ const appSettingsUnsetFixture string = `
3535
"routable": true,
3636
"whitelist": ["1.2.3.4", "0.0.0.0/0"],
3737
"autoscale": {"cmd": {"min": 3, "max": 8, "cpu_percent": 40}},
38-
"label": {"git_repo": "https://github.com/deis/controller-sdk-go", "team" : "deis"},
38+
"label": {"git_repo": "https://github.com/deisthree/controller-sdk-go", "team" : "deis"},
3939
"created": "2014-01-01T00:00:00UTC",
4040
"updated": "2014-01-01T00:00:00UTC",
4141
"uuid": "de1bf5b5-4a72-4f94-a10c-d2a3741cdf75"
4242
}
4343
`
4444

45-
const appSettingsSetExpected string = `{"maintenance":true,"routable":true,"whitelist":["1.2.3.4","0.0.0.0/0"],"autoscale":{"cmd":{"min":3,"max":8,"cpu_percent":40}},"label":{"git_repo":"https://github.com/deis/controller-sdk-go","team":"deis"}}`
46-
const appSettingsUnsetExpected string = `{"maintenance":true,"routable":true,"whitelist":["1.2.3.4","0.0.0.0/0"],"autoscale":{"cmd":{"min":3,"max":8,"cpu_percent":40}},"label":{"git_repo":"https://github.com/deis/controller-sdk-go","team":"deis"}}`
45+
const appSettingsSetExpected string = `{"maintenance":true,"routable":true,"whitelist":["1.2.3.4","0.0.0.0/0"],"autoscale":{"cmd":{"min":3,"max":8,"cpu_percent":40}},"label":{"git_repo":"https://github.com/deisthree/controller-sdk-go","team":"deis"}}`
46+
const appSettingsUnsetExpected string = `{"maintenance":true,"routable":true,"whitelist":["1.2.3.4","0.0.0.0/0"],"autoscale":{"cmd":{"min":3,"max":8,"cpu_percent":40}},"label":{"git_repo":"https://github.com/deisthree/controller-sdk-go","team":"deis"}}`
4747

4848
var trueVar = true
4949

@@ -141,7 +141,7 @@ func TestAppSettingsSet(t *testing.T) {
141141
},
142142
},
143143
Label: map[string]interface{}{
144-
"git_repo": "https://github.com/deis/controller-sdk-go",
144+
"git_repo": "https://github.com/deisthree/controller-sdk-go",
145145
"team": "deis",
146146
},
147147
Created: "2014-01-01T00:00:00UTC",
@@ -161,7 +161,7 @@ func TestAppSettingsSet(t *testing.T) {
161161
},
162162
},
163163
Label: map[string]interface{}{
164-
"git_repo": "https://github.com/deis/controller-sdk-go",
164+
"git_repo": "https://github.com/deisthree/controller-sdk-go",
165165
"team": "deis",
166166
},
167167
}
@@ -203,7 +203,7 @@ func TestAppSettingsUnset(t *testing.T) {
203203
},
204204
},
205205
Label: map[string]interface{}{
206-
"git_repo": "https://github.com/deis/controller-sdk-go",
206+
"git_repo": "https://github.com/deisthree/controller-sdk-go",
207207
"team": "deis",
208208
},
209209
Created: "2014-01-01T00:00:00UTC",
@@ -223,7 +223,7 @@ func TestAppSettingsUnset(t *testing.T) {
223223
},
224224
},
225225
Label: map[string]interface{}{
226-
"git_repo": "https://github.com/deis/controller-sdk-go",
226+
"git_repo": "https://github.com/deisthree/controller-sdk-go",
227227
"team": "deis",
228228
},
229229
}
@@ -265,7 +265,7 @@ func TestAppSettingsList(t *testing.T) {
265265
},
266266
},
267267
Label: map[string]interface{}{
268-
"git_repo": "https://github.com/deis/controller-sdk-go",
268+
"git_repo": "https://github.com/deisthree/controller-sdk-go",
269269
"team": "deis",
270270
},
271271
Created: "2014-01-01T00:00:00UTC",

0 commit comments

Comments
 (0)