2017-06-19 20:17:19 +00:00
|
|
|
SOURCES := $(shell find . -name '*.go')
|
2017-06-20 08:38:15 +00:00
|
|
|
BINARY := kube-bench
|
2020-09-14 06:26:29 +00:00
|
|
|
DOCKER_ORG ?= aquasec
|
2019-03-07 17:02:43 +00:00
|
|
|
VERSION ?= $(shell git rev-parse --short=7 HEAD)
|
2019-06-12 08:41:09 +00:00
|
|
|
KUBEBENCH_VERSION ?= $(shell git describe --tags --abbrev=0)
|
2020-09-14 06:26:29 +00:00
|
|
|
IMAGE_NAME ?= $(DOCKER_ORG)/$(BINARY):$(VERSION)
|
|
|
|
GOOS ?= linux
|
2019-03-07 17:02:43 +00:00
|
|
|
BUILD_OS := linux
|
|
|
|
uname := $(shell uname -s)
|
2020-09-14 06:26:29 +00:00
|
|
|
ARCHS ?= amd64 arm64
|
|
|
|
GOARCH ?= $@
|
2019-03-07 17:02:43 +00:00
|
|
|
|
|
|
|
ifneq ($(findstring Microsoft,$(shell uname -r)),)
|
|
|
|
BUILD_OS := windows
|
|
|
|
else ifeq ($(uname),Linux)
|
|
|
|
BUILD_OS := linux
|
|
|
|
else ifeq ($(uname),Darwin)
|
|
|
|
BUILD_OS := darwin
|
|
|
|
endif
|
|
|
|
|
|
|
|
# kind cluster name to use
|
|
|
|
KIND_PROFILE ?= kube-bench
|
|
|
|
KIND_CONTAINER_NAME=$(KIND_PROFILE)-control-plane
|
|
|
|
|
2020-09-14 06:26:29 +00:00
|
|
|
# build a multi-arch image and push to Docker hub
|
|
|
|
.PHONY: docker
|
|
|
|
docker: publish manifests
|
|
|
|
|
|
|
|
# build and push an arch-specific image
|
|
|
|
.PHONY: $(ARCHS) manifests publish
|
|
|
|
publish: $(ARCHS)
|
|
|
|
$(ARCHS):
|
|
|
|
@echo "Building Docker image for $@"
|
|
|
|
docker build -t ${DOCKER_ORG}/${BINARY}:$(GOOS)-$(GOARCH)-${VERSION} \
|
|
|
|
--build-arg GOOS=$(GOOS) --build-arg GOARCH=$(GOARCH) ./
|
|
|
|
@echo "Push $@ Docker image to ${DOCKER_ORG}/${BINARY}"
|
|
|
|
docker push ${DOCKER_ORG}/${BINARY}:$(GOOS)-$(GOARCH)-${VERSION}
|
|
|
|
docker manifest create --amend "${DOCKER_ORG}/${BINARY}:${VERSION}" "${DOCKER_ORG}/${BINARY}:$(GOOS)-$(GOARCH)-${VERSION}"
|
|
|
|
docker manifest annotate "${DOCKER_ORG}/${BINARY}:${VERSION}" "${DOCKER_ORG}/${BINARY}:$(GOOS)-$(GOARCH)-${VERSION}" --os=$(GOOS) --arch=$(GOARCH)
|
|
|
|
|
|
|
|
# push the multi-arch manifest
|
|
|
|
manifests:
|
|
|
|
@echo "Push manifest for ${DOCKER_ORG}/${BINARY}:${VERSION}"
|
|
|
|
docker manifest push "${DOCKER_ORG}/${BINARY}:${VERSION}"
|
|
|
|
|
|
|
|
build: $(BINARY)
|
2017-06-19 20:17:19 +00:00
|
|
|
|
2017-06-20 08:38:15 +00:00
|
|
|
$(BINARY): $(SOURCES)
|
2020-09-14 06:26:29 +00:00
|
|
|
GOOS=$(GOOS) go build -ldflags "-X github.com/aquasecurity/kube-bench/cmd.KubeBenchVersion=$(KUBEBENCH_VERSION)" -o $(BINARY) .
|
2017-06-19 20:17:19 +00:00
|
|
|
|
2019-03-07 17:02:43 +00:00
|
|
|
# builds the current dev docker version
|
|
|
|
build-docker:
|
|
|
|
docker build --build-arg BUILD_DATE=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ") \
|
2020-09-14 06:26:29 +00:00
|
|
|
--build-arg VCS_REF=$(VERSION) \
|
2019-10-12 22:53:17 +00:00
|
|
|
--build-arg KUBEBENCH_VERSION=$(KUBEBENCH_VERSION) \
|
2019-03-07 17:02:43 +00:00
|
|
|
-t $(IMAGE_NAME) .
|
|
|
|
|
2020-09-14 06:26:29 +00:00
|
|
|
# unit tests
|
2019-03-07 17:02:43 +00:00
|
|
|
tests:
|
2020-10-09 14:56:22 +00:00
|
|
|
GO111MODULE=on go test -vet all -short -race -timeout 30s -coverprofile=coverage.txt -covermode=atomic ./...
|
2019-03-07 17:02:43 +00:00
|
|
|
|
2020-09-14 06:26:29 +00:00
|
|
|
# integration tests using kind
|
2019-11-16 14:39:47 +00:00
|
|
|
integration-tests: build-docker
|
2020-05-20 17:30:52 +00:00
|
|
|
GO111MODULE=on go test ./integration/... -v -tags integration -timeout 1200s -args -kubebenchImg=$(IMAGE_NAME)
|
2019-11-16 14:39:47 +00:00
|
|
|
|
2019-03-07 17:02:43 +00:00
|
|
|
# creates a kind cluster to be used for development.
|
|
|
|
HAS_KIND := $(shell command -v kind;)
|
|
|
|
kind-test-cluster:
|
|
|
|
ifndef HAS_KIND
|
|
|
|
go get -u sigs.k8s.io/kind
|
|
|
|
endif
|
|
|
|
@if [ -z $$(kind get clusters | grep $(KIND_PROFILE)) ]; then\
|
|
|
|
echo "Could not find $(KIND_PROFILE) cluster. Creating...";\
|
2019-09-03 12:42:07 +00:00
|
|
|
kind create cluster --name $(KIND_PROFILE) --image kindest/node:v1.15.3 --wait 5m;\
|
2019-03-07 17:02:43 +00:00
|
|
|
fi
|
|
|
|
|
2020-09-14 06:26:29 +00:00
|
|
|
# pushes the current dev version to the kind cluster.
|
|
|
|
kind-push: build-docker
|
2019-10-23 19:15:03 +00:00
|
|
|
kind load docker-image $(IMAGE_NAME) --name $(KIND_PROFILE)
|
2019-03-07 17:02:43 +00:00
|
|
|
|
|
|
|
# runs the current version on kind using a job and follow logs
|
2020-09-02 14:28:30 +00:00
|
|
|
kind-run: KUBECONFIG = "./kubeconfig.kube-bench"
|
2020-09-14 06:26:29 +00:00
|
|
|
kind-run: ensure-stern kind-push
|
2019-03-07 17:02:43 +00:00
|
|
|
sed "s/\$${VERSION}/$(VERSION)/" ./hack/kind.yaml > ./hack/kind.test.yaml
|
2020-09-02 14:28:30 +00:00
|
|
|
kind get kubeconfig --name="$(KIND_PROFILE)" > $(KUBECONFIG)
|
2019-03-07 17:02:43 +00:00
|
|
|
-KUBECONFIG=$(KUBECONFIG) \
|
2020-08-13 08:01:30 +00:00
|
|
|
kubectl delete job kube-bench
|
2019-03-07 17:02:43 +00:00
|
|
|
KUBECONFIG=$(KUBECONFIG) \
|
|
|
|
kubectl apply -f ./hack/kind.test.yaml
|
|
|
|
KUBECONFIG=$(KUBECONFIG) \
|
|
|
|
stern -l app=kube-bench --container kube-bench
|
|
|
|
|
|
|
|
# ensures that stern is installed
|
|
|
|
HAS_STERN := $(shell command -v stern;)
|
|
|
|
ensure-stern:
|
|
|
|
ifndef HAS_STERN
|
|
|
|
curl -LO https://github.com/wercker/stern/releases/download/1.10.0/stern_$(BUILD_OS)_amd64 && \
|
|
|
|
chmod +rx ./stern_$(BUILD_OS)_amd64 && \
|
|
|
|
mv ./stern_$(BUILD_OS)_amd64 /usr/local/bin/stern
|
|
|
|
endif
|