Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Go mod init #73

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ include versioning.mk

# dockerized development environment variables
REPO_PATH := github.com/teamhephy/${SHORT_NAME}
DEV_ENV_IMAGE := hephy/go-dev:v1.28.3
DEV_ENV_IMAGE := hephy/go-dev:v1.33.3
DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
DEV_ENV_PREFIX := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR}
DEV_ENV_CMD := ${DEV_ENV_PREFIX} ${DEV_ENV_IMAGE}
Expand Down
117 changes: 23 additions & 94 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,9 @@ import:
version: 6882f85ccdc7c1822b146d1a6b0c2c48f91b5140
- package: github.com/docker/distribution
repo: https://github.com/teamhephy/distribution
version: c77f65b80cb8579cde5e2ba38fdeb92c08827698
vcs: git
- package: speter.net/go/exp/math/dec/inf
repo: https://github.com/belua/inf
- package: gopkg.in/inf.v0
repo: https://github.com/go-inf/inf
vcs: git
- package: google.golang.org/api
version: b8fc810ca6b55409cf098c3cde6de6e97a6f52b2
Expand All @@ -42,7 +41,6 @@ import:
- package: google.golang.org/grpc
version: 84671c5e11bfb5b7c237ff1799a660ff11a518d2
- package: github.com/golang/protobuf
version: v1.4.0
- package: github.com/prometheus/client_golang
version: v0.9.1
- package: github.com/prometheus/common
Expand Down
51 changes: 51 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
module builder

go 1.16

require (
github.com/Azure/azure-sdk-for-go v60.3.0+incompatible // indirect
github.com/Azure/go-autorest/autorest v0.11.23 // indirect
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
github.com/arschles/assert v0.0.0-20150820224400-6882f85ccdc7
github.com/aws/aws-sdk-go v1.15.11
github.com/blang/semver v3.0.1+incompatible // indirect
github.com/codegangsta/cli v1.9.0
github.com/coreos/go-oidc v0.0.0-20160504003935-5cf2aa52da8c // indirect
github.com/coreos/go-systemd v0.0.0-20160527140244-4484981625c1 // indirect
github.com/coreos/pkg v0.0.0-20160620232715-fa29b1d70f0b // indirect
github.com/dnaeon/go-vcr v1.2.0 // indirect
github.com/docker/distribution v2.7.1+incompatible
github.com/docker/engine-api v0.4.0 // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-metrics v0.0.1 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/emicklei/go-restful v1.1.4-0.20160814184150-89ef8af493ab // indirect
github.com/gofrs/uuid v4.2.0+incompatible // indirect
github.com/google/cadvisor v0.24.0-alpha1.0.20161021224824-a726d13de8cb // indirect
github.com/gorilla/context v0.0.0-20140604161150-14f550f51af5 // indirect
github.com/gorilla/mux v0.0.0-20140926153814-e444e69cbd2e // indirect
github.com/goware/urlx v0.3.1 // indirect
github.com/jonboulle/clockwork v0.0.0-20141017032234-72f9bd7c4e0c // indirect
github.com/juju/ratelimit v0.0.0-20151125201925-77ed1c8a0121 // indirect
github.com/kelseyhightower/envconfig v1.4.0
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/ncw/swift v1.0.53 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/pborman/uuid v0.0.0-20150603214016-ca53cad383ca
github.com/smartystreets/goconvey v1.7.2 // indirect
github.com/spf13/cobra v1.3.0 // indirect
github.com/teamhephy/builder v2.13.7+incompatible
github.com/teamhephy/controller-sdk-go v0.0.0-20181015154232-a1ffb4886a5f
github.com/teamhephy/pkg v0.5.1-0.20180912202400-777f37a30108
github.com/ugorji/go v0.0.0-20151028022000-f1f1a805ed36 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
google.golang.org/cloud v0.0.0-20151119220103-975617b05ea8 // indirect
gopkg.in/inf.v0 v0.9.0 // indirect
gopkg.in/yaml.v2 v2.4.0
k8s.io/client-go v0.0.0-20170211140036-e5fcd1eb6215 // indirect
k8s.io/kubernetes v1.4.12
)

// replace github.com/docker/distribution/digest => github.com/opencontainers/go-digest v0.0.0-20190228220655-ac19fd6e7483

replace github.com/docker/distribution => github.com/fluxcd/distribution v0.0.0-20190419185413-6c9727e5e5de
Loading