Skip to content

Commit f42af9b

Browse files
author
Madison Steiner
committed
Update URLs
1 parent 13f463e commit f42af9b

File tree

14 files changed

+24
-24
lines changed

14 files changed

+24
-24
lines changed

.github/PULL_REQUEST_TEMPLATE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ requires deis/workflow#1234
44
requires deis/workflow-e2e#5678
55

66

7-
[docs]: https://github.com/deis/workflow
8-
[e2e]: https://github.com/deis/workflow-e2e
7+
[docs]: https://github.com/deisthree/workflow
8+
[e2e]: https://github.com/deisthree/workflow-e2e

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ test-functional:
5858
@echo "Implement functional tests in _tests directory"
5959

6060
test-integration:
61-
@echo "Check https://github.com/deis/workflow-e2e for the complete integration test suite"
61+
@echo "Check https://github.com/deisthree/workflow-e2e for the complete integration test suite"
6262

6363
upload-coverage:
6464
$(eval CI_ENV := $(shell curl -s https://codecov.io/env | bash))

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Deis (pronounced DAY-iss) Workflow is an open source Platform as a Service (PaaS) that adds a developer-friendly layer to any [Kubernetes](http://kubernetes.io) cluster, making it easy to deploy and manage applications on your own servers.
1010

11-
For more information about the Deis Workflow, please visit the main project page at https://github.com/deis/workflow.
11+
For more information about the Deis Workflow, please visit the main project page at https://github.com/deisthree/workflow.
1212

1313
We welcome your input! If you have feedback, please [submit an issue][issues]. If you'd like to participate in development, please read the "Development" section below and [submit a pull request][prs].
1414

@@ -77,8 +77,8 @@ kubectl get pod --namespace=deis -w | grep deis-controller
7777
```
7878

7979
[install-k8s]: https://kubernetes.io/docs/setup/pick-right-solution
80-
[issues]: https://github.com/deis/controller/issues
81-
[prs]: https://github.com/deis/controller/pulls
82-
[workflow]: https://github.com/deis/workflow
80+
[issues]: https://github.com/deisthree/controller/issues
81+
[prs]: https://github.com/deisthree/controller/pulls
82+
[workflow]: https://github.com/deisthree/workflow
8383
[Docker]: https://www.docker.com/
84-
[v2.18]: https://github.com/deis/workflow/releases/tag/v2.18.0
84+
[v2.18]: https://github.com/deisthree/workflow/releases/tag/v2.18.0

charts/controller/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: controller
2-
home: https://github.com/deis/controller
2+
home: https://github.com/deisthree/controller
33
version: <Will be populated by the ci before publishing the chart>
44
description: Deis Workflow Controller (API).
55
maintainers:

rootfs/api/serializers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def validate_values(self, data):
244244
if key == 'HEALTHCHECK_URL':
245245
# Only Path information is supported, not query / anchor or anything else
246246
# Path is the only thing Kubernetes supports right now
247-
# See https://github.com/deis/controller/issues/774
247+
# See https://github.com/deisthree/controller/issues/774
248248
uri = urlparse(value)
249249

250250
if not uri.path:

rootfs/api/tests/test_app_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ def test_settings_labels(self, mock_requests):
276276
base_labels = {
277277
'label':
278278
{
279-
'git_repo': 'https://github.com/deis/controller',
279+
'git_repo': 'https://github.com/deisthree/controller',
280280
'team': 'frontend',
281281
'empty': ''
282282
}

rootfs/api/tests/test_auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,5 +378,5 @@ def test_regenerate(self):
378378
def test_auth_no_ldap_by_default(self, mock_logger):
379379
"""Ensure that LDAP authentication is disabled by default."""
380380
self.test_auth()
381-
# NOTE(bacongobbler): Using https://github.com/deis/controller/issues/1189 as a test case
381+
# NOTE(bacongobbler): Using https://github.com/deisthree/controller/issues/1189 as a test case
382382
mock_logger.warning.assert_not_called()

rootfs/api/tests/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ def test_admin_can_create_config_on_other_apps(self, mock_requests):
340340
def test_config_owner_is_requesting_user(self, mock_requests):
341341
"""
342342
Ensure that setting the config value is owned by the requesting user
343-
See https://github.com/deis/deis/issues/2650
343+
See https://github.com/deisthree/deis/issues/2650
344344
"""
345345
response = self.test_admin_can_create_config_on_other_apps()
346346
self.assertEqual(response.data['owner'], self.user.username)

rootfs/api/tests/test_domain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def test_delete_domain_does_not_exist(self):
237237
self.assertEqual(response.status_code, 404)
238238

239239
def test_delete_domain_does_not_remove_latest(self):
240-
"""https://github.com/deis/deis/issues/3239"""
240+
"""https://github.com/deisthree/deis/issues/3239"""
241241
url = '/v2/apps/{app_id}/domains'.format(app_id=self.app_id)
242242
test_domains = [
243243
'test-domain.example.com',
@@ -255,7 +255,7 @@ def test_delete_domain_does_not_remove_latest(self):
255255
Domain.objects.get(domain=test_domains[0])
256256

257257
def test_delete_domain_does_not_remove_others(self):
258-
"""https://github.com/deis/deis/issues/3475"""
258+
"""https://github.com/deisthree/deis/issues/3475"""
259259
self.test_delete_domain_does_not_remove_latest()
260260
self.assertEqual(Domain.objects.all().count(), 2)
261261

rootfs/api/tests/test_limits.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_request_limit_memory(self, mock_requests):
6464
self.assertEqual(response.status_code, 200, response.data)
6565
self.assertIn('memory', response.data)
6666
self.assertEqual(response.data['memory'], {})
67-
# regression test for https://github.com/deis/deis/issues/1563
67+
# regression test for https://github.com/deisthree/deis/issues/1563
6868
self.assertNotIn('"', response.data['memory'])
6969

7070
# set an initial limit
@@ -105,7 +105,7 @@ def test_request_limit_memory(self, mock_requests):
105105
self.assertIn('web', memory)
106106
self.assertEqual(memory['web'], '1G')
107107

108-
# regression test for https://github.com/deis/deis/issues/1613
108+
# regression test for https://github.com/deisthree/deis/issues/1613
109109
# ensure that config:set doesn't wipe out previous limits
110110
body = {'values': json.dumps({'NEW_URL2': 'http://localhost:8080/'})}
111111
response = self.client.post(url, body)
@@ -193,7 +193,7 @@ def test_request_limit_cpu(self, mock_requests):
193193
self.assertEqual(response.status_code, 200, response.data)
194194
self.assertIn('cpu', response.data)
195195
self.assertEqual(response.data['cpu'], {})
196-
# regression test for https://github.com/deis/deis/issues/1563
196+
# regression test for https://github.com/deisthree/deis/issues/1563
197197
self.assertNotIn('"', response.data['cpu'])
198198

199199
# set an initial limit

0 commit comments

Comments
 (0)