Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
bgpat committed Aug 13, 2019
1 parent 71e59bc commit 5204563
Showing 5 changed files with 93 additions and 296 deletions.
12 changes: 1 addition & 11 deletions Makefile
Original file line number Diff line number Diff line change
@@ -36,10 +36,6 @@ cross-build:
done; \
done

.PHONY: deps
deps: glide
glide install

.PHONY: dist
dist:
cd dist && \
@@ -57,12 +53,6 @@ docker-build:
fast:
go build $(LDFLAGS) -o bin/$(NAME)

.PHONY: glide
glide:
ifeq ($(shell command -v glide 2> /dev/null),)
curl https://glide.sh/get | sh
endif

.PHONY: install
install:
go install $(LDFLAGS)
@@ -74,4 +64,4 @@ release:

.PHONY: test
test:
go test -cover -v `glide novendor`
go test -cover -v ./...
276 changes: 0 additions & 276 deletions glide.lock

This file was deleted.

9 changes: 0 additions & 9 deletions glide.yaml

This file was deleted.

39 changes: 39 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
module github.com/wantedly/k8sec

go 1.12

require (
cloud.google.com/go v0.0.0-20160913182117-3b1ae45394a2
github.com/Azure/go-autorest v10.6.2+incompatible
github.com/dgrijalva/jwt-go v0.0.0-20160705203006-01aeca54ebda
github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680
github.com/gogo/protobuf v0.0.0-20170330071051-c0656edd0d9e
github.com/golang/glog v0.0.0-20141105023935-44145f04b68c
github.com/golang/protobuf v1.1.0
github.com/google/btree v0.0.0-20160524151835-7d79101e329e
github.com/google/gofuzz v0.0.0-20161122191042-44d81051d367
github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d
github.com/gophercloud/gophercloud v0.0.0-20180330165814-781450b3c4fc
github.com/gregjones/httpcache v0.0.0-20170728041850-787624de3eb7
github.com/imdario/mergo v0.0.0-20141206190957-6633656539c1
github.com/inconshreveable/mousetrap v1.0.0
github.com/json-iterator/go v0.0.0-20180701071628-ab8a2e0c74be
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
github.com/modern-go/reflect2 v0.0.0-20180320133207-05fbef0ca5da
github.com/peterbourgon/diskv v2.0.1+incompatible
github.com/pkg/errors v0.8.0
github.com/spf13/cobra v0.0.0-20161222151250-de09d9ce07d0
github.com/spf13/pflag v0.0.0-20160915153101-c7e63cf4530b
golang.org/x/crypto v0.0.0-20180222182404-49796115aa4b
golang.org/x/net v0.0.0-20170809000501-1c05540f6879
golang.org/x/oauth2 v0.0.0-20170412232759-a6bd8cefa181
golang.org/x/sys v0.0.0-20171031081856-95c657629925
golang.org/x/text v0.0.0-20170810154203-b19bf474d317
golang.org/x/time v0.0.0-20161028155119-f51c12702a4d
google.golang.org/appengine v0.0.0-20160823001527-4f7eeb5305a4
gopkg.in/inf.v0 v0.9.0
gopkg.in/yaml.v2 v2.0.0-20170721113624-670d4cfef054
k8s.io/api v0.0.0-20180628040859-072894a440bd
k8s.io/apimachinery v0.0.0-20180621070125-103fd098999d
k8s.io/client-go v8.0.0+incompatible
)
Loading

0 comments on commit 5204563

Please sign in to comment.