Skip to content

Commit d0cee05

Browse files
committed
chore(*): Update links for things that have or are moving
1 parent 1096e5f commit d0cee05

8 files changed

Lines changed: 15 additions & 18 deletions

File tree

CONTRIBUTING.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@ Our official support channels are:
1919
- GitHub issue queues:
2020
- builder: https://github.com/deis/builder/issues
2121
- chart: https://github.com/deis/charts/issues
22+
- controller: https://github.com/deis/controller/issues
2223
- database: https://github.com/deis/postgres/issues
24+
- documentation: https://github.com/deis/workflow/issues
2325
- helm: https://github.com/helm/helm/issues
2426
- minio: https://github.com/deis/minio/issues
2527
- registry: https://github.com/deis/registry/issues
2628
- router: https://github.com/deis/router/issues
27-
- workflow: https://github.com/deis/workflow/issues
28-
- All other public [Deis repositories][repos]
29+
- All other public [Deis repositories][repos]
2930
- IRC: #[deis](irc://irc.freenode.org:6667/#deis) IRC channel on freenode.org
3031

3132
## Getting Started

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ MKDOCSBUILDOPTS = --clean --strict --verbose
88
MKDOCSBUILD = $(MKDOCS) build $(MKDOCSBUILDOPTS)
99
MKDOCSSERVE = $(MKDOCS) serve -a 0.0.0.0:8000
1010

11-
SHORT_NAME ?= docs-v2
11+
SHORT_NAME ?= workflow
1212
VERSION ?= git-$(shell git rev-parse --short HEAD)
1313
IMAGE := ${SHORT_NAME}:${VERSION}
1414

README.md

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

3-
[![Build Status](https://travis-ci.org/deis/docs-v2.svg?branch=master)](https://travis-ci.org/deis/docs-v2)
3+
[![Build Status](https://travis-ci.org/deis/workflow.svg?branch=master)](https://travis-ci.org/deis/workflow)
44
[![Latest Docs](http://img.shields.io/badge/docs-latest-fc1e5e.svg)](http://docs-v2.readthedocs.org/en/latest/)
55

66
## About

src/contributing/development-environment.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In order to successfully compile and test Deis binaries and build Docker images
2020
- [shellcheck][shellcheck]
2121
- [Docker][docker] (in a non-Linux environment, you will additionally want [Docker Machine][machine])
2222

23-
For [deis/workflow][workflow], in particular, you will also need:
23+
For [deis/controller][controller], in particular, you will also need:
2424

2525
- Python 2.7 or later (with `pip`)
2626
- virtualenv (`sudo pip install virtualenv`)
@@ -222,7 +222,7 @@ $ kubectl logs -f <pod name> --namespace=deis
222222

223223
### Django Shell
224224

225-
Specific to [deis/workflow][workflow]
225+
Specific to [deis/controller][controller]
226226

227227
```
228228
$ kubectl exec -it <pod name> --namespace=deis -- python manage.py shell
@@ -245,7 +245,7 @@ things you should do when proposing a change to any Deis component.
245245
[shellcheck]: https://github.com/koalaman/shellcheck
246246
[docker]: https://www.docker.com/
247247
[machine]: http://docs.docker.com/machine/install-machine/
248-
[workflow]: https://github.com/deis/workflow
248+
[controller]: https://github.com/deis/controller
249249
[vbox]: https://www.virtualbox.org/
250250
[testing]: testing.md
251251
[k8s]: http://kubernetes.io/

src/contributing/overview.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Find a bug? Want to see a new feature? Have a request for the maintainers? Open
88

99
## Write Documentation
1010

11-
We are always looking to improve and expand our documentation. Most docs reside in the [deis/workflow][workflow] repository under the [docs/][docs] directory. Simply fork the project, update docs and send us a pull request.
11+
We are always looking to improve and expand our documentation. Most docs reside in the [deis/workflow][workflow] repository. Simply fork the project, update docs and send us a pull request.
1212

1313
## Contribute Code
1414

@@ -27,5 +27,4 @@ Interact with the community on our user mailing list or live in our IRC channel,
2727
[workflow]: https://github.com/deis/workflow
2828
[dd]: design-documents.md
2929
[dev-environment]: development-environment.md
30-
[docs]: https://github.com/deis/workflow/tree/master/docs
31-
[easy-fix]: https://github.com/deis/workflow/labels/easy-fix
30+
[easy-fix]: https://github.com/issues?q=user%3Adeis+label%3Aeasy-fix+is%3Aopen

src/contributing/submitting-a-pull-request.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,14 @@ Most pull requests will reference a GitHub issue. In the PR description - not in
1717

1818
## Include Tests
1919

20-
If you alter or add functionality to any Deis component, your changes should include the necessary tests to prove that it works. Unit tests may be written with the component's implementation language (usually Go or Python), and functional and integration tests are written in Go.
21-
22-
Integration test code spanning multiple Deis components can be found in the `tests/` directory of the [deis/workflow][workflow] project.
23-
24-
While working on local code changes, always run the tests. Be sure your proposed changes pass all of `./tests/bin/test-integration` on your workstation before submitting a PR.
20+
If you significantly alter or add functionality to a component that impacts the broader Deis Workflow PaaS, you should submit a complementary PR to modify or amend end-to-end integration tests. These integration tests can be found in the [deis/workflow-e2e][workflow-e2e] repository.
2521

2622
See [testing](testing.md) for more information.
2723

2824

2925
## Include Docs
3026

31-
Changes to any Deis component that could affect a user's experience also require a change or addition to the relevant documentation. For most Deis components, this involves updating the component's _own_ documentation. In some cases where a component is tightly integrated into [deis/workflow][workflow], its documentation must also be updated.
27+
Changes to any Deis Workflow component that could affect a user's experience also require a change or addition to the relevant documentation. For most Deis components, this involves updating the component's _own_ documentation. In some cases where a component is tightly integrated into [deis/workflow][workflow], its documentation must also be updated.
3228

3329

3430
## Code Standards
@@ -103,3 +99,4 @@ If the PR is from a Deis maintainer, then he or she should be the one to close i
10399
[python]: http://www.python.org/
104100
[zen]: http://www.python.org/dev/peps/pep-0020/
105101
[workflow]: https://github.com/deis/workflow
102+
[workflow-e2e]: https://github.com/deis/workflow-e2e

src/understanding-workflow/components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ the functionality in your own project we invite you to give it a shot!
1212

1313
## Controller
1414

15-
**Project Location:** [deis/workflow](https://github.com/deis/workflow)
15+
**Project Location:** [deis/controller](https://github.com/deis/controller)
1616

1717
The controller component is an HTTP API server which serves as the endpoint for
1818
the `deis` CLI. The controller provides all of the platform functionality as

themes/deis/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161

6262

6363
<div class="span3 docs-sidebar column_calc">
64-
<a class="fork" href="http://github.com/deis/docs-v2"><div class="forkImage"></div></a>
64+
<a class="fork" href="http://github.com/deis/workflow"><div class="forkImage"></div></a>
6565
<div class="docs-border"></div>
6666
<div class="navigation">
6767
{%- include "nav.html" %}

0 commit comments

Comments
 (0)