This repository has been archived by the owner on Sep 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from utilitywarehouse/polish
preparing for a release
- Loading branch information
Showing
8,148 changed files
with
4,228,786 additions
and
59 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
*~ | ||
.DS_Store | ||
vendor/ | ||
|
||
ingress53 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,30 @@ | ||
# ingress53 | ||
|
||
# Building | ||
ingress53 is a service designed to run in kubernetes and maintain DNS records for its ingress resources on AWS Route53. | ||
|
||
If you need to build manually, you will need to install [glide](https://glide.sh/). | ||
# Usage | ||
ingress53 is slightly opinionated in that it assumes there are two kinds of ingresses: public and private. A kubernetes selector is used to select public ingresses, while all others default to being private. | ||
|
||
You can test it locally (please refer to the command line help for more options): | ||
```sh | ||
./ingress53 \ | ||
-route53-zone-id=XXXXXXXXXXXXXX \ | ||
-target-private=private.example.com \ | ||
-target-public=public.example.com \ | ||
-kubernetes-config=$HOME/.kube/config \ | ||
-dry-run | ||
``` | ||
|
||
You can use the generated docker image ([utilitywarehouse/ingress53](https://hub.docker.com/r/utilitywarehouse/ingress53/)) to deploy it on your kubernetes cluster. | ||
|
||
## Building | ||
|
||
If you need to build manually: | ||
|
||
``` | ||
$ git clone [email protected]:utilitywarehouse/ingress53.git | ||
$ cd ingress53 | ||
$ glide i | ||
$ go build . | ||
``` | ||
|
||
Alternatively, you can build the docker image and use the binary in a container. | ||
The project uses [glide](https://glide.sh/) to manage dependencies but at the same time, they are vendored for simplicity. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,35 @@ | ||
package: github.com/utilitywarehouse/ingress53 | ||
import: | ||
- package: github.com/aws/aws-sdk-go | ||
version: v1.6.18 | ||
subpackages: | ||
- aws | ||
- aws/session | ||
- service/route53 | ||
- service/route53/route53iface | ||
- package: github.com/hashicorp/logutils | ||
- package: github.com/miekg/dns | ||
- package: github.com/prometheus/client_golang | ||
version: v0.8.0 | ||
subpackages: | ||
- prometheus | ||
- prometheus/promhttp | ||
- package: github.com/utilitywarehouse/go-operational | ||
subpackages: | ||
- op | ||
- package: k8s.io/client-go | ||
version: v1.5.0 | ||
subpackages: | ||
- 1.5/kubernetes | ||
- 1.5/pkg/api | ||
- 1.5/pkg/apis/extensions/v1beta1 | ||
- 1.5/pkg/labels | ||
- 1.5/pkg/runtime | ||
- 1.5/pkg/watch | ||
- 1.5/rest | ||
- 1.5/tools/cache | ||
- 1.5/tools/clientcmd | ||
- package: github.com/aws/aws-sdk-go | ||
version: v1.5.13 | ||
- package: github.com/hashicorp/logutils | ||
- package: github.com/prometheus/client_golang | ||
version: v0.8.0 | ||
- package: github.com/emicklei/go-restful | ||
version: 1.0.0 | ||
subpackages: | ||
- prometheus/promhttp | ||
- package: github.com/utilitywarehouse/go-operational | ||
- package: github.com/miekg/dns | ||
- swagger |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.