Skip to content

Commit 5dc50d3

Browse files
author
Madison Steiner
committed
Update URLs
1 parent b318c14 commit 5dc50d3

8 files changed

Lines changed: 24 additions & 16 deletions

File tree

.github/PULL_REQUEST_TEMPLATE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ refs deis/workflow#1234
44
refs 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

.github/PULL_REQUEST_TEMPLATE.bu

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
If your change requires any additions or changes to the [documentation][docs] or to the [end-to-end test suite][e2e], please submit them as 1 or more pull requests against that repo and refer to them here.
2+
3+
refs deis/workflow#1234
4+
refs deis/workflow-e2e#5678
5+
6+
7+
[docs]: https://github.com/deis/workflow
8+
[e2e]: https://github.com/deis/workflow-e2e

MAINTAINERS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Deis Maintainers
22

33
This project is part of Deis. The official maintainers documentation is
4-
located [in the main project](https://github.com/deis/deis/blob/master/MAINTAINERS.md).
4+
located [in the main project](https://github.com/deisthree/deis/blob/master/MAINTAINERS.md).

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Deis (pronounced DAY-iss) Workflow is an open source Platform as a Service (PaaS) that adds a developer-friendly layer to any [Kubernetes][k8s-home] cluster, making it easy to deploy and manage applications on your own servers.
88

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

1111
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].
1212

@@ -19,8 +19,8 @@ The builder is primarily a git server that responds to `git push`es by executing
1919
- If the `BUILDER_STORAGE` environment variable is other than `minio`, attempts to create the appropriate storage driver and saves using this driver.
2020
- Otherwise, if `BUILDER_STORAGE` is `minio` and the `DEIS_MINIO_SERVICE_HOST` and `DEIS_MINIO_SERVICE_PORT` environment variables exist (these are standard [Kubernetes service discovery environment variables](http://kubernetes.io/docs/user-guide/services/#environment-variables)), saves to the [S3 API][s3-api-ref] compatible server at `http://$DEIS_MINIO_SERVICE_HOST:$DEIS_MINIO_SERVICE_HOST`
2121
3. Starts a new [Kubernetes Pod](http://kubernetes.io/docs/user-guide/pods/) to build the code, according to the following rules:
22-
- If a `Dockerfile` is present in the codebase, starts a [`dockerbuilder`](https://github.com/deis/dockerbuilder) pod, configured to download the code to build from the URL computed in the previous step.
23-
- Otherwise, starts a [`slugbuilder`](https://github.com/deis/slugbuilder) pod, configured to download the code to build from the URL computed in the previous step.
22+
- If a `Dockerfile` is present in the codebase, starts a [`dockerbuilder`](https://github.com/deisthree/dockerbuilder) pod, configured to download the code to build from the URL computed in the previous step.
23+
- Otherwise, starts a [`slugbuilder`](https://github.com/deisthree/slugbuilder) pod, configured to download the code to build from the URL computed in the previous step.
2424

2525
# Supported Off-Cluster Storage Backends
2626

@@ -43,7 +43,7 @@ The Deis project welcomes contributions from all developers. The high level proc
4343

4444
## Docker Based Development Environment
4545

46-
The preferred environment for development uses [the `go-dev` Docker image](https://github.com/deis/docker-go-dev). The tools described in this section are used to build, test, package and release each version of Deis.
46+
The preferred environment for development uses [the `go-dev` Docker image](https://github.com/deisthree/docker-go-dev). The tools described in this section are used to build, test, package and release each version of Deis.
4747

4848
To use it yourself, you must have [make](https://www.gnu.org/software/make/) installed and Docker installed and running on your local development machine.
4949

@@ -63,11 +63,11 @@ Note that you will not be able to build or push Docker images using this method
6363

6464
The Deis project requires that as much code as possible is unit tested, but the core contributors also recognize that some code must be tested at a higher level (functional or integration tests, for example).
6565

66-
The [end-to-end tests](https://github.com/deis/workflow-e2e) repository has our integration tests. Additionally, the core contributors and members of the community also regularly [dogfood](https://en.wikipedia.org/wiki/Eating_your_own_dog_food) the platform. Since this particular component is at the center of much of the Deis Workflow platform, we find it especially important to dogfood it.
66+
The [end-to-end tests](https://github.com/deisthree/workflow-e2e) repository has our integration tests. Additionally, the core contributors and members of the community also regularly [dogfood](https://en.wikipedia.org/wiki/Eating_your_own_dog_food) the platform. Since this particular component is at the center of much of the Deis Workflow platform, we find it especially important to dogfood it.
6767

6868
## Running End-to-End Tests
6969

70-
Please see [README.md](https://github.com/deis/workflow-e2e/blob/master/README.md) on the end-to-end tests repository for instructions on how to set up your testing environment and run the tests.
70+
Please see [README.md](https://github.com/deisthree/workflow-e2e/blob/master/README.md) on the end-to-end tests repository for instructions on how to set up your testing environment and run the tests.
7171

7272
## Dogfooding
7373

@@ -77,6 +77,6 @@ Please follow the instructions on the [official Deis docs](http://docs-v2.readth
7777
[s3-api-ref]: http://docs.aws.amazon.com/AmazonS3/latest/API/APIRest.html
7878
[install-k8s]: http://kubernetes.io/gettingstarted/
7979
[k8s-home]: http://kubernetes.io
80-
[issues]: https://github.com/deis/builder/issues
81-
[prs]: https://github.com/deis/builder/pulls
82-
[v2.18]: https://github.com/deis/workflow/releases/tag/v2.18.0
80+
[issues]: https://github.com/deisthree/builder/issues
81+
[prs]: https://github.com/deisthree/builder/pulls
82+
[v2.18]: https://github.com/deisthree/workflow/releases/tag/v2.18.0

charts/builder/Chart.yaml

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

glide.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

glide.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import:
2727
- package: github.com/arschles/assert
2828
version: 6882f85ccdc7c1822b146d1a6b0c2c48f91b5140
2929
- package: github.com/docker/distribution
30-
repo: https://github.com/deis/distribution
30+
repo: https://github.com/deisthree/distribution
3131
version: 0afef00d5764404d70f86076f364551657d51de6
3232
vcs: git
3333
- package: speter.net/go/exp/math/dec/inf

pkg/gitreceive/k8s_util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func dockerBuilderPod(
9090
addEnvToPod(pod, "IMG_NAME", imageName)
9191
addEnvToPod(pod, builderStorage, storageType)
9292
// inject existing DEIS_REGISTRY_SERVICE_HOST and PORT info to dockerbuilder
93-
// see https://github.com/deis/dockerbuilder/issues/83
93+
// see https://github.com/deisthree/dockerbuilder/issues/83
9494
addEnvToPod(pod, "DEIS_REGISTRY_SERVICE_HOST", registryHost)
9595
addEnvToPod(pod, "DEIS_REGISTRY_SERVICE_PORT", registryPort)
9696

0 commit comments

Comments
 (0)