Skip to content

Commit 68e8d78

Browse files
committed
Adding travic CI and renaming
1 parent 97f6780 commit 68e8d78

8 files changed

Lines changed: 27 additions & 17 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/deisthree/workflow
8-
[e2e]: https://github.com/deisthree/workflow-e2e
7+
[docs]: https://github.com/teamhephy/workflow
8+
[e2e]: https://github.com/teamhephy/workflow-e2e

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
sudo: required
2+
language: go
3+
services:
4+
- docker
5+
script: make test
6+
notifications:
7+
slack:
8+
secure: pWDCV3od8gxvzxh9DrOTvBL54XoCfWYhZZlwd2ZbyyOz6SS12Psg/ZuCT2253p4yMfF/LPlsz76mr7NgcCrMI0ReveTa/rnt3XBZtyY+1rlsQsy2oxgdAzbO587ENCQeMw2F/OWHaixMT8NDqxEqQd6xafK9Zmg6BeBjwgs7XfXKcR3WzNIuCO0ZG05+Yd0FIxmd/8Xm5tGiFEYr05+Ix6MLdF9MSCXZUPeu1EsYXhDljokLq49w63W1UMU10tm4t7VCEdaO+X9w6EJ5Ov8HDxb6L6IviUYY6+IGTZ01nwIoM6OrGQqfEAytYqgTKdehgQzQnAbLI6TW2wJ0twqEsLrlbTa4NW4j0KkazQJkN5kqcKYQvaeKJJhvJIG44Gi/u78pW3S6W7NU5DhrlE6bbxdIBHJW1vJBimkqu2oBNrO5ZoBB9MS9zflBsU5g/pQpVeHWMnWE8fcYDGa1PqAcr7q6wtdPsrVZhnHmmARN3PwZzIVVVsXbaIQG8VLC5grLGnwMf1Y1fz2nK3sVpCftvrYZT3G6CNAASo+eLOwYdZdiJ9jIS7WNLN1GtpIEvjeDt3QRqsDyH8YoAKUvY5h/v8IWPP/BaSwQbJwep4+Dj7xkpXX5/4wm4jEnVFV1p4xE0lD1AXvEMAVHtPhhggvscNhF9j6oeoPju6eTPcxG+5o=

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/deisthree/deis/blob/master/MAINTAINERS.md).
4+
located [in the main project](https://github.com/teamhephy/deis/blob/master/MAINTAINERS.md).

README.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11

2-
# Deis Builder v2
2+
# Hephy Builder v2
33

44
[![Build Status](https://ci.deis.io/job/builder/badge/icon)](https://ci.deis.io/job/builder) [![codecov](https://codecov.io/gh/deis/builder/branch/master/graph/badge.svg)](https://codecov.io/gh/deis/builder)
55
[![Go Report Card](https://goreportcard.com/badge/github.com/deis/builder)](https://goreportcard.com/report/github.com/deis/builder)[![codebeat badge](https://codebeat.co/badges/e29e5e2b-531d-4374-810b-f05053c47688)](https://codebeat.co/projects/github.tiyicn.workers.dev-deis-builder) [![Docker Repository on Quay](https://quay.io/repository/deisci/builder/status "Docker Repository on Quay")](https://quay.io/repository/deisci/builder)
66

7+
Hephy - A Fork of Deis Workflow
8+
79
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.
810

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

1113
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].
1214

@@ -19,8 +21,8 @@ The builder is primarily a git server that responds to `git push`es by executing
1921
- If the `BUILDER_STORAGE` environment variable is other than `minio`, attempts to create the appropriate storage driver and saves using this driver.
2022
- 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`
2123
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/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.
24+
- If a `Dockerfile` is present in the codebase, starts a [`dockerbuilder`](https://github.com/teamhephy/dockerbuilder) pod, configured to download the code to build from the URL computed in the previous step.
25+
- Otherwise, starts a [`slugbuilder`](https://github.com/teamhephy/slugbuilder) pod, configured to download the code to build from the URL computed in the previous step.
2426

2527
# Supported Off-Cluster Storage Backends
2628

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

4446
## Docker Based Development Environment
4547

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.
48+
The preferred environment for development uses [the `go-dev` Docker image](https://github.com/teamhephy/docker-go-dev). The tools described in this section are used to build, test, package and release each version of Deis.
4749

4850
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.
4951

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

6466
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).
6567

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.
68+
The [end-to-end tests](https://github.com/teamhephy/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.
6769

6870
## Running End-to-End Tests
6971

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.
72+
Please see [README.md](https://github.com/teamhephy/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.
7173

7274
## Dogfooding
7375

@@ -77,6 +79,6 @@ Please follow the instructions on the [official Deis docs](http://docs-v2.readth
7779
[s3-api-ref]: http://docs.aws.amazon.com/AmazonS3/latest/API/APIRest.html
7880
[install-k8s]: http://kubernetes.io/gettingstarted/
7981
[k8s-home]: http://kubernetes.io
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
82+
[issues]: https://github.com/teamhephy/builder/issues
83+
[prs]: https://github.com/teamhephy/builder/pulls
84+
[v2.18]: https://github.com/teamhephy/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/deisthree/builder
2+
home: https://github.com/teamhephy/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/deisthree/distribution
30+
repo: https://github.com/teamhephy/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/deisthree/dockerbuilder/issues/83
93+
// see https://github.com/teamhephy/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)