Skip to content

Commit ca4dec8

Browse files
authored
Merge pull request #45 from Cryptophobia/master
chore(go-dev): upgrading go-dev container to v1.25.1
2 parents 31b31c5 + b57af74 commit ca4dec8

File tree

8 files changed

+14
-12
lines changed

8 files changed

+14
-12
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
sudo: required
22
language: go
3+
go:
4+
- 1.12.x
35
services:
46
- docker
5-
script: make bootstrap && make test
7+
script: make bootstrap && make test
68
notifications:
79
slack:
810
secure: pWDCV3od8gxvzxh9DrOTvBL54XoCfWYhZZlwd2ZbyyOz6SS12Psg/ZuCT2253p4yMfF/LPlsz76mr7NgcCrMI0ReveTa/rnt3XBZtyY+1rlsQsy2oxgdAzbO587ENCQeMw2F/OWHaixMT8NDqxEqQd6xafK9Zmg6BeBjwgs7XfXKcR3WzNIuCO0ZG05+Yd0FIxmd/8Xm5tGiFEYr05+Ix6MLdF9MSCXZUPeu1EsYXhDljokLq49w63W1UMU10tm4t7VCEdaO+X9w6EJ5Ov8HDxb6L6IviUYY6+IGTZ01nwIoM6OrGQqfEAytYqgTKdehgQzQnAbLI6TW2wJ0twqEsLrlbTa4NW4j0KkazQJkN5kqcKYQvaeKJJhvJIG44Gi/u78pW3S6W7NU5DhrlE6bbxdIBHJW1vJBimkqu2oBNrO5ZoBB9MS9zflBsU5g/pQpVeHWMnWE8fcYDGa1PqAcr7q6wtdPsrVZhnHmmARN3PwZzIVVVsXbaIQG8VLC5grLGnwMf1Y1fz2nK3sVpCftvrYZT3G6CNAASo+eLOwYdZdiJ9jIS7WNLN1GtpIEvjeDt3QRqsDyH8YoAKUvY5h/v8IWPP/BaSwQbJwep4+Dj7xkpXX5/4wm4jEnVFV1p4xE0lD1AXvEMAVHtPhhggvscNhF9j6oeoPju6eTPcxG+5o=

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ include includes.mk
22

33
SHORT_NAME := router
44
DEIS_REGISTRY ?= ${DEV_REGISTRY}
5-
IMAGE_PREFIX ?= deis
5+
IMAGE_PREFIX ?= hephy
66

77
include versioning.mk
88

99
SHELL_SCRIPTS = $(wildcard rootfs/bin/*) rootfs/opt/router/sbin/boot
1010

11-
REPO_PATH := github.com/deis/${SHORT_NAME}
11+
REPO_PATH := github.com/teamhephy/${SHORT_NAME}
1212

1313
# The following variables describe the containerized development environment
1414
# and other build options
15-
DEV_ENV_IMAGE := quay.io/deis/go-dev:v1.10.0
15+
DEV_ENV_IMAGE := hephy/go-dev:v1.25.1
1616
DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
1717
DEV_ENV_CMD := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}
1818
DEV_ENV_CMD_INT := docker run -it --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}

glide.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package: github.com/deis/router
1+
package: github.com/teamhephy/router
22
flatten: true
33
ignore:
44
- k8s.io/kubernetes

model/model.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"log"
88
"strings"
99

10-
"github.com/deis/router/utils"
11-
modelerUtility "github.com/deis/router/utils/modeler"
10+
"github.com/teamhephy/router/utils"
11+
modelerUtility "github.com/teamhephy/router/utils/modeler"
1212
"k8s.io/client-go/1.4/kubernetes"
1313
"k8s.io/client-go/1.4/pkg/api"
1414
"k8s.io/client-go/1.4/pkg/api/errors"

model/model_validation_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"reflect"
55
"testing"
66

7-
modelerUtility "github.com/deis/router/utils/modeler"
7+
modelerUtility "github.com/teamhephy/router/utils/modeler"
88
)
99

1010
var (

nginx/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"text/template"
99

1010
"github.com/Masterminds/sprig"
11-
"github.com/deis/router/model"
11+
"github.com/teamhephy/router/model"
1212
)
1313

1414
const (

nginx/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"text/template"
1313

1414
"github.com/Masterminds/sprig"
15-
"github.com/deis/router/model"
15+
"github.com/teamhephy/router/model"
1616
)
1717

1818
func TestWriteCerts(t *testing.T) {

router.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"log"
55
"reflect"
66

7-
"github.com/deis/router/model"
8-
"github.com/deis/router/nginx"
7+
"github.com/teamhephy/router/model"
8+
"github.com/teamhephy/router/nginx"
99
"k8s.io/client-go/1.4/kubernetes"
1010
"k8s.io/client-go/1.4/pkg/util/flowcontrol"
1111
"k8s.io/client-go/1.4/rest"

0 commit comments

Comments
 (0)