Skip to content

Commit 88f21d7

Browse files
committed
Adding travis.yml and renaming
1 parent 8d7d283 commit 88f21d7

File tree

6 files changed

+22
-12
lines changed

6 files changed

+22
-12
lines changed

.travis.yml

+8
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=

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# How to Contribute
22

33
This project is part of Deis. You can find the latest contribution
4-
guidelines [at the Deis project](https://github.com/deisthree/deis/blob/master/CONTRIBUTING.md).
4+
guidelines [at the Deis project](https://github.com/teamhephy/deis/blob/master/CONTRIBUTING.md).
55

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ RUN buildDeps='gcc git libffi-dev libssl-dev python3-dev python3-pip python3-whe
4444
# pin azure-storage to version wal-e uses (see docker-entrypoint.sh)
4545
azure-storage==0.20.0 && \
4646
# "upgrade" boto to 2.43.0 + the patch to fix minio connections
47-
pip install --disable-pip-version-check --no-cache-dir --upgrade git+https://github.com/deisthree/boto@88c980e56d1053892eb940d43a15a68af4ebb5e6 && \
47+
pip install --disable-pip-version-check --no-cache-dir --upgrade git+https://github.com/teamhephy/boto@88c980e56d1053892eb940d43a15a68af4ebb5e6 && \
4848
# cleanup
4949
apt-get purge -y --auto-remove $buildDeps && \
5050
apt-get autoremove -y && \

MAINTAINERS.md

+1-1
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

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11

2-
# Deis Postgres
2+
# Hephy Postgres
3+
4+
Hephy - A Fork of Deis Workflow
35

46
[![Build Status](https://ci.deis.io/job/postgres/badge/icon)](https://ci.deis.io/job/postgres)
57
[![Docker Repository on Quay](https://quay.io/repository/deis/postgres/status "Docker Repository on Quay")](https://quay.io/repository/deis/postgres)
68

79
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.
810

9-
For more information about the Deis Workflow, please visit the main project page at https://github.com/deisthree/workflow.
11+
For more information about the 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

@@ -35,15 +37,15 @@ In order to develop and test this component in a Deis cluster, you'll need the f
3537

3638
## Testing Your Code
3739

38-
Once you have all the aforementioned prerequisites, you are ready to start writing code. Once you've finished building a new feature or fixed a bug, please write a unit or integration test for it if possible. See [an existing test](https://github.com/deisthree/postgres/blob/master/contrib/ci/test.sh) for an example test.
40+
Once you have all the aforementioned prerequisites, you are ready to start writing code. Once you've finished building a new feature or fixed a bug, please write a unit or integration test for it if possible. See [an existing test](https://github.com/teamhephy/postgres/blob/master/contrib/ci/test.sh) for an example test.
3941

40-
If your feature or bugfix doesn't easily lend itself to unit/integration testing, you may need to add tests at a higher level. Please consider adding a test to our [end-to-end test suite](https://github.com/deisthree/workflow-e2e) in that case. If you do, please reference the end-to-end test pull request in your pull request for this repository.
42+
If your feature or bugfix doesn't easily lend itself to unit/integration testing, you may need to add tests at a higher level. Please consider adding a test to our [end-to-end test suite](https://github.com/teamhephy/workflow-e2e) in that case. If you do, please reference the end-to-end test pull request in your pull request for this repository.
4143

4244
### Dogfooding
4345

4446
Finally, we encourage you to [dogfood](https://en.wikipedia.org/wiki/Eating_your_own_dog_food) this component while you're writing code on it. To do so, you'll need to build and push Docker images with your changes.
4547

46-
This project has a [Makefile](https://github.com/deisthree/postgres/blob/master/Makefile) that makes these tasks significantly easier. It requires the following environment variables to be set:
48+
This project has a [Makefile](https://github.com/teamhephy/postgres/blob/master/Makefile) that makes these tasks significantly easier. It requires the following environment variables to be set:
4749

4850
* `DEIS_REGISTRY` - A Docker registry that you have push access to and your Kubernetes cluster can pull from
4951
* If this is [Docker Hub](https://hub.docker.com/), leave this variable empty
@@ -64,7 +66,7 @@ make docker-build docker-push
6466
Note that you'll have to push your image to a Docker repository (`make docker-push`) in order for your Kubernetes cluster to pull the image. This is important for testing in your cluster.
6567

6668

67-
[issues]: https://github.com/deisthree/postgres/issues
69+
[issues]: https://github.com/teamhephy/postgres/issues
6870
[k8s-docs]: http://kubernetes.io/docs
69-
[prs]: https://github.com/deisthree/postgres/pulls
70-
[v2.18]: https://github.com/deisthree/workflow/releases/tag/v2.18.0
71+
[prs]: https://github.com/teamhephy/postgres/pulls
72+
[v2.18]: https://github.com/teamhephy/workflow/releases/tag/v2.18.0

charts/database/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: database
2-
home: https://github.com/deisthree/postgres
2+
home: https://github.com/teamhephy/postgres
33
version: <Will be populated by the ci before publishing the chart>
44
description: A PostgreSQL database used by Deis Workflow.
55
keywords:

0 commit comments

Comments
 (0)