forked from groupme/ksonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
84 lines (64 loc) · 2.34 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Copyright 2017 The kubecfg authors
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
SHELL=/bin/bash
VERSION?=dev-$(shell date +%FT%T%z)
KS_BIN?=ks
APIMACHINERY_VER := $(shell grep -A100 k8s.io/apimachinery Gopkg.lock | grep -m1 "version =" | cut -d'"' -f2)
REVISION=$(shell git rev-parse HEAD)
GIT_TAG=$(shell git describe --tags)
GO = go
EXTRA_GO_FLAGS =
LD_FLAGS = -X main.version=$(VERSION) -X main.apimachineryVersion=$(APIMACHINERY_VER) -X generator.revision=$(REVISION) $(GO_LDFLAGS)
GO_FLAGS = -ldflags="$(LD_FLAGS) " $(EXTRA_GO_FLAGS)
GOFMT = gofmt
KCFG_TEST_FILE = lib/kubecfg_test.jsonnet
GUESTBOOK_FILE = examples/guestbook.jsonnet
DOC_GEN_FILE = ./docs/generate/update-generated-docs.sh
DOC_TEST_FILE = ./docs/generate/verify-generated-docs.sh
JSONNET_FILES = $(KCFG_TEST_FILE) $(GUESTBOOK_FILE)
GO_PACKAGES = ./...
# Default cluster from this config is used for integration tests
KUBECONFIG = $(HOME)/.kube/config
INTEGRATION_TEST_FIXTURES = ./fixtures
all: ks docs
Gopkg.lock: Gopkg.toml
dep ensure
touch Gopkg.lock
$(eval APIMACHINERY_VER := $(shell grep -B1 k8s.io/apimachinery Gopkg.lock | head -n1 | cut -d'"' -f2))
ks: Gopkg.lock
$(GO) build -o $(KS_BIN) $(GO_FLAGS) ./cmd/ks
docs:
$(DOC_GEN_FILE)
docker-image: Gopkg.lock
docker build -t ks:$(GIT_TAG) --build-arg LD_FLAGS="$(LD_FLAGS) -s -w" .
install:
$(GO) build -o $(GOPATH)/bin/ks $(GO_FLAGS) ./cmd/ks
test: gotest docstest
gotest:
$(GO) test $(GO_FLAGS) $(GO_PACKAGES)
docstest:
$(DOC_TEST_FILE)
vet:
$(GO) vet $(GO_PACKAGES)
fmt:
$(GOFMT) -s -w $(shell $(GO) list -f '{{.Dir}}' $(GO_PACKAGES))
generate:
$(GO) generate ./...
clean:
$(RM) ./ks ./docs/cli-reference/ks*.md
snapshot:
$(shell goreleaser --rm-dist || true)
$(shell APIMACHINERY_VER=$(APIMACHINERY_VER) goreleaser --snapshot)
.PHONY: all ks test clean vet fmt docs install docker-image snapshot