Auto-register routes based on kubernetes service annotations

This commit is contained in:
Geoff Bourne
2018-05-26 12:31:40 -05:00
parent d3d1f36009
commit 2befd24b4a
7 changed files with 404 additions and 117 deletions
+8 -4
View File
@@ -24,14 +24,16 @@ jobs:
- restore_cache:
keys:
- cache-{{ arch }}-{{ .Branch }}-{{ checksum "Gopkg.lock" }}
- cache-{{ arch }}-{{ .Branch }}-{{ checksum "glide.lock" }}
- cache-{{ arch }}-{{ .Branch }}
- cache
- run: make install-dep
- run:
name: install dependencies
command: glide install
- save_cache:
key: cache-{{ arch }}-{{ .Branch }}-{{ checksum "Gopkg.lock" }}
key: cache-{{ arch }}-{{ .Branch }}-{{ checksum "glide.lock" }}
paths:
- vendor
@@ -42,7 +44,9 @@ jobs:
steps:
- checkout
- run: make install-dep
- run:
name: install dependencies
command: glide install
- setup_remote_docker
- run: echo $DOCKER_PASSWORD | docker login -u $DOCKER_USER --password-stdin