2022-08-31 04:22:46 +00:00
.DEFAULT_GOAL : build -all
2019-05-29 21:44:21 +00:00
2022-08-30 15:30:28 +00:00
############
# DEFAULTS #
############
GIT_VERSION := $( shell git describe --match "v[0-9]*" --tags $( git rev-list --tags --max-count= 1) )
GIT_VERSION_DEV := $( shell git describe --match "[0-9].[0-9]-dev*" )
GIT_BRANCH := $( shell git branch | grep \* | cut -d ' ' -f2)
GIT_HASH := $( GIT_BRANCH) /$( shell git log -1 --pretty= format:"%H" )
TIMESTAMP := $( shell date '+%Y-%m-%d_%I:%M:%S%p' )
VERSION ?= $( shell git describe --match "v[0-9]*" )
REGISTRY ?= ghcr.io
2022-09-27 17:47:59 +00:00
REPO ?= kyverno
2022-08-30 15:30:28 +00:00
IMAGE_TAG_LATEST_DEV = $( shell git describe --match "[0-9].[0-9]-dev*" | cut -d '-' -f-2)
IMAGE_TAG_DEV = $( GIT_VERSION_DEV)
IMAGE_TAG ?= $( GIT_VERSION)
K8S_VERSION ?= $( shell kubectl version --short | grep -i server | cut -d" " -f3 | cut -c2-)
2022-09-06 14:48:53 +00:00
KIND_IMAGE ?= kindest/node:v1.24.4
2022-08-31 08:06:12 +00:00
KIND_NAME ?= kind
2022-08-31 04:22:46 +00:00
GOOS ?= $( shell go env GOOS)
GOARCH ?= $( shell go env GOARCH)
2022-09-09 09:00:25 +00:00
KOCACHE ?= /tmp/ko-cache
2022-09-02 13:34:22 +00:00
BUILD_WITH ?= ko
2022-09-27 17:47:59 +00:00
KYVERNOPRE_IMAGE := kyvernopre
KYVERNO_IMAGE := kyverno
CLI_IMAGE := kyverno-cli
REPO_KYVERNOPRE := $( REGISTRY) /$( REPO) /$( KYVERNOPRE_IMAGE)
REPO_KYVERNO := $( REGISTRY) /$( REPO) /$( KYVERNO_IMAGE)
REPO_CLI := $( REGISTRY) /$( REPO) /$( CLI_IMAGE)
2022-03-07 09:43:36 +00:00
2022-08-25 16:59:24 +00:00
#########
# TOOLS #
#########
TOOLS_DIR := $( PWD) /.tools
KIND := $( TOOLS_DIR) /kind
KIND_VERSION := v0.14.0
CONTROLLER_GEN := $( TOOLS_DIR) /controller-gen
2022-10-13 07:23:44 +00:00
CONTROLLER_GEN_VERSION := v0.10.0
2022-09-01 06:14:56 +00:00
CLIENT_GEN := $( TOOLS_DIR) /client-gen
LISTER_GEN := $( TOOLS_DIR) /lister-gen
INFORMER_GEN := $( TOOLS_DIR) /informer-gen
2022-09-28 11:45:16 +00:00
OPENAPI_GEN := $( TOOLS_DIR) /openapi-gen
2022-09-28 09:31:06 +00:00
CODE_GEN_VERSION := v0.25.2
2022-08-25 16:59:24 +00:00
GEN_CRD_API_REFERENCE_DOCS := $( TOOLS_DIR) /gen-crd-api-reference-docs
GEN_CRD_API_REFERENCE_DOCS_VERSION := latest
GO_ACC := $( TOOLS_DIR) /go-acc
GO_ACC_VERSION := latest
KUSTOMIZE := $( TOOLS_DIR) /kustomize
KUSTOMIZE_VERSION := latest
GOIMPORTS := $( TOOLS_DIR) /goimports
GOIMPORTS_VERSION := latest
2022-10-20 12:17:33 +00:00
HELM := $( TOOLS_DIR) /helm
HELM_VERSION := v3.10.1
2022-08-25 16:59:24 +00:00
HELM_DOCS := $( TOOLS_DIR) /helm-docs
2022-09-01 23:03:14 +00:00
HELM_DOCS_VERSION := v1.11.0
2022-08-25 16:59:24 +00:00
KO := $( TOOLS_DIR) /ko
2022-09-22 03:06:34 +00:00
KO_VERSION := main #e93dbee8540f28c45ec9a2b8aec5ef8e43123966
2022-10-20 12:17:33 +00:00
TOOLS := $( KIND) $( CONTROLLER_GEN) $( CLIENT_GEN) $( LISTER_GEN) $( INFORMER_GEN) $( OPENAPI_GEN) $( GEN_CRD_API_REFERENCE_DOCS) $( GO_ACC) $( KUSTOMIZE) $( GOIMPORTS) $( HELM) $( HELM_DOCS) $( KO)
2022-08-30 14:06:30 +00:00
i f e q ( $( GOOS ) , d a r w i n )
SED := gsed
e l s e
SED := sed
e n d i f
2022-08-25 16:59:24 +00:00
$(KIND) :
2022-09-28 12:39:03 +00:00
@echo Install kind... >& 2
2022-08-25 16:59:24 +00:00
@GOBIN= $( TOOLS_DIR) go install sigs.k8s.io/kind@$( KIND_VERSION)
$(CONTROLLER_GEN) :
2022-09-28 12:39:03 +00:00
@echo Install controller-gen... >& 2
2022-08-25 16:59:24 +00:00
@GOBIN= $( TOOLS_DIR) go install sigs.k8s.io/controller-tools/cmd/controller-gen@$( CONTROLLER_GEN_VERSION)
2022-09-01 06:14:56 +00:00
$(CLIENT_GEN) :
2022-09-28 12:39:03 +00:00
@echo Install client-gen... >& 2
2022-09-01 06:14:56 +00:00
@GOBIN= $( TOOLS_DIR) go install k8s.io/code-generator/cmd/client-gen@$( CODE_GEN_VERSION)
$(LISTER_GEN) :
2022-09-28 12:39:03 +00:00
@echo Install lister-gen... >& 2
2022-09-01 06:14:56 +00:00
@GOBIN= $( TOOLS_DIR) go install k8s.io/code-generator/cmd/lister-gen@$( CODE_GEN_VERSION)
$(INFORMER_GEN) :
2022-09-28 12:39:03 +00:00
@echo Install informer-gen... >& 2
2022-09-01 06:14:56 +00:00
@GOBIN= $( TOOLS_DIR) go install k8s.io/code-generator/cmd/informer-gen@$( CODE_GEN_VERSION)
2022-09-28 11:45:16 +00:00
$(OPENAPI_GEN) :
2022-09-28 12:39:03 +00:00
@echo Install openapi-gen... >& 2
2022-09-28 11:45:16 +00:00
@GOBIN= $( TOOLS_DIR) go install k8s.io/code-generator/cmd/openapi-gen@$( CODE_GEN_VERSION)
2022-08-25 16:59:24 +00:00
$(GEN_CRD_API_REFERENCE_DOCS) :
2022-09-28 12:39:03 +00:00
@echo Install gen-crd-api-reference-docs... >& 2
2022-08-25 16:59:24 +00:00
@GOBIN= $( TOOLS_DIR) go install github.com/ahmetb/gen-crd-api-reference-docs@$( GEN_CRD_API_REFERENCE_DOCS_VERSION)
$(GO_ACC) :
2022-09-28 12:39:03 +00:00
@echo Install go-acc... >& 2
2022-08-25 16:59:24 +00:00
@GOBIN= $( TOOLS_DIR) go install github.com/ory/go-acc@$( GO_ACC_VERSION)
$(KUSTOMIZE) :
2022-09-28 12:39:03 +00:00
@echo Install kustomize... >& 2
2022-08-25 16:59:24 +00:00
@GOBIN= $( TOOLS_DIR) go install sigs.k8s.io/kustomize/kustomize/v4@$( KUSTOMIZE_VERSION)
$(GOIMPORTS) :
2022-09-28 12:39:03 +00:00
@echo Install goimports... >& 2
2022-08-25 16:59:24 +00:00
@GOBIN= $( TOOLS_DIR) go install golang.org/x/tools/cmd/goimports@$( GOIMPORTS_VERSION)
2022-10-20 12:17:33 +00:00
$(HELM) :
@echo Install helm... >& 2
@GOBIN= $( TOOLS_DIR) go install helm.sh/helm/v3/cmd/helm@$( HELM_VERSION)
2022-08-25 16:59:24 +00:00
$(HELM_DOCS) :
2022-09-28 12:39:03 +00:00
@echo Install helm-docs... >& 2
2022-08-25 16:59:24 +00:00
@GOBIN= $( TOOLS_DIR) go install github.com/norwoodj/helm-docs/cmd/helm-docs@$( HELM_DOCS_VERSION)
$(KO) :
2022-09-28 12:39:03 +00:00
@echo Install ko... >& 2
2022-08-25 16:59:24 +00:00
@GOBIN= $( TOOLS_DIR) go install github.com/google/ko@$( KO_VERSION)
.PHONY : install -tools
install-tools : $( TOOLS ) ## Install tools
.PHONY : clean -tools
2022-08-30 15:30:28 +00:00
clean-tools : ## Remove installed tools
2022-09-28 12:39:03 +00:00
@echo Clean tools... >& 2
2022-08-25 16:59:24 +00:00
@rm -rf $( TOOLS_DIR)
2022-08-26 07:23:04 +00:00
#################
# BUILD (LOCAL) #
#################
CMD_DIR := ./cmd
KYVERNO_DIR := $( CMD_DIR) /kyverno
KYVERNOPRE_DIR := $( CMD_DIR) /initContainer
CLI_DIR := $( CMD_DIR) /cli/kubectl-kyverno
2022-08-30 15:30:28 +00:00
KYVERNO_BIN := $( KYVERNO_DIR) /kyverno
KYVERNOPRE_BIN := $( KYVERNOPRE_DIR) /kyvernopre
CLI_BIN := $( CLI_DIR) /kubectl-kyverno
2022-08-26 07:23:04 +00:00
PACKAGE ?= github.com/kyverno/kyverno
CGO_ENABLED ?= 0
LD_FLAGS = " -s -w -X $( PACKAGE) /pkg/version.BuildVersion= $( GIT_VERSION) -X $( PACKAGE) /pkg/version.BuildHash= $( GIT_HASH) -X $( PACKAGE) /pkg/version.BuildTime= $( TIMESTAMP) "
LD_FLAGS_DEV = " -s -w -X $( PACKAGE) /pkg/version.BuildVersion= $( GIT_VERSION_DEV) -X $( PACKAGE) /pkg/version.BuildHash= $( GIT_HASH) -X $( PACKAGE) /pkg/version.BuildTime= $( TIMESTAMP) "
.PHONY : fmt
fmt : ## Run go fmt
2022-09-28 12:39:03 +00:00
@echo Go fmt... >& 2
2022-08-30 04:59:08 +00:00
@go fmt ./...
2022-08-26 07:23:04 +00:00
.PHONY : vet
vet : ## Run go vet
2022-09-28 12:39:03 +00:00
@echo Go vet... >& 2
2022-08-30 04:59:08 +00:00
@go vet ./...
2022-08-26 07:23:04 +00:00
2022-09-02 15:14:04 +00:00
.PHONY : unused -package -check
unused-package-check :
@tidy= $$ ( go mod tidy) ; \
if [ -n " $$ {tidy} " ] ; then \
echo "go mod tidy checking failed!" ; echo " $$ {tidy} " ; echo; \
fi
2022-08-30 15:30:28 +00:00
$(KYVERNOPRE_BIN) : fmt vet
2022-09-28 12:39:03 +00:00
@echo Build kyvernopre binary... >& 2
2022-08-30 15:30:28 +00:00
@CGO_ENABLED= $( CGO_ENABLED) GOOS = $( GOOS) go build -o $( KYVERNOPRE_BIN) -ldflags= $( LD_FLAGS) $( KYVERNOPRE_DIR)
2022-08-26 07:23:04 +00:00
2022-09-02 13:34:22 +00:00
$(KYVERNO_BIN) : fmt vet
2022-09-28 12:39:03 +00:00
@echo Build kyverno binary... >& 2
2022-09-02 13:34:22 +00:00
@CGO_ENABLED= $( CGO_ENABLED) GOOS = $( GOOS) go build -o $( KYVERNO_BIN) -ldflags= $( LD_FLAGS) $( KYVERNO_DIR)
2022-08-30 15:30:28 +00:00
$(CLI_BIN) : fmt vet
2022-09-28 12:39:03 +00:00
@echo Build cli binary... >& 2
2022-08-30 15:30:28 +00:00
@CGO_ENABLED= $( CGO_ENABLED) GOOS = $( GOOS) go build -o $( CLI_BIN) -ldflags= $( LD_FLAGS) $( CLI_DIR)
2022-08-26 07:23:04 +00:00
.PHONY : build -kyvernopre
2022-08-30 15:30:28 +00:00
build-kyvernopre : $( KYVERNOPRE_BIN ) ## Build kyvernopre binary
2022-08-26 07:23:04 +00:00
2022-09-01 10:16:36 +00:00
.PHONY : build -kyverno
build-kyverno : $( KYVERNO_BIN ) ## Build kyverno binary
2022-08-26 07:23:04 +00:00
.PHONY : build -cli
2022-09-01 10:16:36 +00:00
build-cli : $( CLI_BIN ) ## Build cli binary
2022-08-26 07:23:04 +00:00
2022-09-01 10:16:36 +00:00
build-all : build -kyvernopre build -kyverno build -cli ## Build all binaries
2022-08-26 07:23:04 +00:00
##############
# BUILD (KO) #
##############
2022-08-31 10:41:58 +00:00
PLATFORMS := linux/amd64,linux/arm64,linux/s390x
2022-09-01 01:04:47 +00:00
LOCAL_PLATFORM := linux/$( GOARCH)
2022-08-30 15:30:28 +00:00
KO_TAGS := latest,$( IMAGE_TAG)
KO_TAGS_DEV := latest,$( IMAGE_TAG_DEV)
2022-08-26 07:23:04 +00:00
2022-08-30 15:30:28 +00:00
.PHONY : ko -build -kyvernopre
ko-build-kyvernopre : $( KO ) ## Build kyvernopre local image (with ko)
2022-09-28 12:39:03 +00:00
@echo Build kyvernopre local image with ko... >& 2
2022-09-09 09:00:25 +00:00
@LD_FLAGS= $( LD_FLAGS_DEV) KOCACHE = $( KOCACHE) KO_DOCKER_REPO = ko.local $( KO) build $( KYVERNOPRE_DIR) --preserve-import-paths --tags= $( KO_TAGS_DEV) --platform= $( LOCAL_PLATFORM)
2022-08-26 07:23:04 +00:00
.PHONY : ko -build -kyverno
2022-08-30 15:30:28 +00:00
ko-build-kyverno : $( KO ) ## Build kyverno local image (with ko)
2022-09-28 12:39:03 +00:00
@echo Build kyverno local image with ko... >& 2
2022-09-09 09:00:25 +00:00
@LD_FLAGS= $( LD_FLAGS_DEV) KOCACHE = $( KOCACHE) KO_DOCKER_REPO = ko.local $( KO) build $( KYVERNO_DIR) --preserve-import-paths --tags= $( KO_TAGS_DEV) --platform= $( LOCAL_PLATFORM)
2022-08-26 07:23:04 +00:00
.PHONY : ko -build -cli
2022-09-01 10:16:36 +00:00
ko-build-cli : $( KO ) ## Build cli local image (with ko)
2022-09-28 12:39:03 +00:00
@echo Build cli local image with ko... >& 2
2022-09-09 09:00:25 +00:00
@LD_FLAGS= $( LD_FLAGS_DEV) KOCACHE = $( KOCACHE) KO_DOCKER_REPO = ko.local $( KO) build $( CLI_DIR) --preserve-import-paths --tags= $( KO_TAGS_DEV) --platform= $( LOCAL_PLATFORM)
2022-08-26 07:23:04 +00:00
2022-08-30 15:30:28 +00:00
.PHONY : ko -build -all
ko-build-all : ko -build -kyvernopre ko -build -kyverno ko -build -cli ## Build all local images (with ko)
2022-08-26 07:23:04 +00:00
2022-08-30 15:30:28 +00:00
################
# PUBLISH (KO) #
################
2022-08-26 07:23:04 +00:00
2022-09-02 13:34:22 +00:00
REGISTRY_USERNAME ?= dummy
KO_KYVERNOPRE_IMAGE := ko.local/github.com/kyverno/kyverno/cmd/initcontainer
KO_KYVERNO_IMAGE := ko.local/github.com/kyverno/kyverno/cmd/kyverno
2022-08-26 07:23:04 +00:00
2022-08-30 15:30:28 +00:00
.PHONY : ko -login
ko-login : $( KO )
@$( KO) login $( REGISTRY) --username $( REGISTRY_USERNAME) --password $( REGISTRY_PASSWORD)
2022-08-26 07:23:04 +00:00
2022-08-30 15:30:28 +00:00
.PHONY : ko -publish -kyvernopre
2022-09-01 10:16:36 +00:00
ko-publish-kyvernopre : ko -login ## Build and publish kyvernopre image (with ko)
2022-09-09 09:00:25 +00:00
@LD_FLAGS= $( LD_FLAGS) KOCACHE = $( KOCACHE) KO_DOCKER_REPO = $( REPO_KYVERNOPRE) $( KO) build $( KYVERNOPRE_DIR) --bare --tags= $( KO_TAGS) --platform= $( PLATFORMS)
2022-08-26 07:23:04 +00:00
2022-08-30 15:30:28 +00:00
.PHONY : ko -publish -kyverno
2022-09-01 10:16:36 +00:00
ko-publish-kyverno : ko -login ## Build and publish kyverno image (with ko)
2022-09-09 09:00:25 +00:00
@LD_FLAGS= $( LD_FLAGS) KOCACHE = $( KOCACHE) KO_DOCKER_REPO = $( REPO_KYVERNO) $( KO) build $( KYVERNO_DIR) --bare --tags= $( KO_TAGS) --platform= $( PLATFORMS)
2022-08-26 07:23:04 +00:00
2022-08-30 15:30:28 +00:00
.PHONY : ko -publish -cli
2022-09-01 10:16:36 +00:00
ko-publish-cli : ko -login ## Build and publish cli image (with ko)
2022-09-09 09:00:25 +00:00
@LD_FLAGS= $( LD_FLAGS) KOCACHE = $( KOCACHE) KO_DOCKER_REPO = $( REPO_CLI) $( KO) build $( CLI_DIR) --bare --tags= $( KO_TAGS) --platform= $( PLATFORMS)
2022-08-30 15:30:28 +00:00
.PHONY : ko -publish -kyvernopre -dev
2022-09-01 10:16:36 +00:00
ko-publish-kyvernopre-dev : ko -login ## Build and publish kyvernopre dev image (with ko)
2022-09-09 09:00:25 +00:00
@LD_FLAGS= $( LD_FLAGS_DEV) KOCACHE = $( KOCACHE) KO_DOCKER_REPO = $( REPO_KYVERNOPRE) $( KO) build $( KYVERNOPRE_DIR) --bare --tags= $( KO_TAGS_DEV) --platform= $( PLATFORMS)
2022-08-30 15:30:28 +00:00
.PHONY : ko -publish -kyverno -dev
2022-09-01 10:16:36 +00:00
ko-publish-kyverno-dev : ko -login ## Build and publish kyverno dev image (with ko)
2022-09-09 09:00:25 +00:00
@LD_FLAGS= $( LD_FLAGS_DEV) KOCACHE = $( KOCACHE) KO_DOCKER_REPO = $( REPO_KYVERNO) $( KO) build $( KYVERNO_DIR) --bare --tags= $( KO_TAGS_DEV) --platform= $( PLATFORMS)
2022-08-30 15:30:28 +00:00
.PHONY : ko -publish -cli -dev
2022-09-01 10:16:36 +00:00
ko-publish-cli-dev : ko -login ## Build and publish cli dev image (with ko)
2022-09-09 09:00:25 +00:00
@LD_FLAGS= $( LD_FLAGS_DEV) KOCACHE = $( KOCACHE) KO_DOCKER_REPO = $( REPO_CLI) $( KO) build $( CLI_DIR) --bare --tags= $( KO_TAGS_DEV) --platform= $( PLATFORMS)
2022-08-26 07:23:04 +00:00
2022-08-30 15:30:28 +00:00
.PHONY : ko -publish -all
2022-09-01 10:16:36 +00:00
ko-publish-all : ko -publish -kyvernopre ko -publish -kyverno ko -publish -cli ## Build and publish all images (with ko)
2022-08-26 07:23:04 +00:00
2022-08-30 15:30:28 +00:00
.PHONY : ko -publish -all -dev
2022-09-01 10:16:36 +00:00
ko-publish-all-dev : ko -publish -kyvernopre -dev ko -publish -kyverno -dev ko -publish -cli -dev ## Build and publish all dev images (with ko)
2022-08-26 07:23:04 +00:00
2022-08-30 14:06:30 +00:00
##################
2022-08-31 04:22:46 +00:00
# UTILS (DOCKER) #
2022-08-30 14:06:30 +00:00
##################
2019-05-23 04:41:24 +00:00
2022-08-31 04:22:46 +00:00
.PHONY : docker -get -kyvernopre -digest
2022-09-01 10:16:36 +00:00
docker-get-kyvernopre-digest : ## Get kyvernopre image digest (with docker)
2022-09-27 17:47:59 +00:00
@docker buildx imagetools inspect --raw $( REPO_KYVERNOPRE) :$( IMAGE_TAG) | perl -pe 'chomp if eof' | openssl dgst -sha256 | sed 's/^.* //'
2022-08-31 04:22:46 +00:00
.PHONY : docker -get -kyvernopre -digest -dev
2022-09-01 10:16:36 +00:00
docker-get-kyvernopre-digest-dev : ## Get kyvernopre dev image digest (with docker)
2022-09-27 17:47:59 +00:00
@docker buildx imagetools inspect --raw $( REPO_KYVERNOPRE) :$( IMAGE_TAG_DEV) | perl -pe 'chomp if eof' | openssl dgst -sha256 | sed 's/^.* //'
2022-08-31 04:22:46 +00:00
.PHONY : docker -get -kyverno -digest
2022-09-01 10:16:36 +00:00
docker-get-kyverno-digest : ## Get kyverno image digest (with docker)
2022-09-27 17:47:59 +00:00
@docker buildx imagetools inspect --raw $( REPO_KYVERNO) :$( IMAGE_TAG) | perl -pe 'chomp if eof' | openssl dgst -sha256 | sed 's/^.* //'
2022-08-31 04:22:46 +00:00
.PHONY : docker -get -kyverno -digest -dev
2022-09-01 10:16:36 +00:00
docker-get-kyverno-digest-dev : ## Get kyverno dev image digest (with docker)
2022-09-27 17:47:59 +00:00
@docker buildx imagetools inspect --raw $( REPO_KYVERNO) :$( IMAGE_TAG_DEV) | perl -pe 'chomp if eof' | openssl dgst -sha256 | sed 's/^.* //'
2022-08-31 04:22:46 +00:00
2022-08-30 14:06:30 +00:00
.PHONY : docker -buildx -builder
2022-08-26 07:23:04 +00:00
docker-buildx-builder :
if ! docker buildx ls | grep -q kyverno; then \
docker buildx create --name kyverno --use; \
fi
2022-08-31 04:22:46 +00:00
##################
# BUILD (DOCKER) #
##################
2022-09-27 17:47:59 +00:00
DOCKER_KYVERNOPRE_IMAGE := $( REPO_KYVERNOPRE)
DOCKER_KYVERNO_IMAGE := $( REPO_KYVERNO)
2022-09-02 13:34:22 +00:00
2022-08-31 04:22:46 +00:00
.PHONY : docker -build -kyvernopre
2022-09-01 10:16:36 +00:00
docker-build-kyvernopre : docker -buildx -builder ## Build kyvernopre local image (with docker)
2022-09-28 12:39:03 +00:00
@echo Build kyvernopre local image with docker... >& 2
2022-09-27 17:47:59 +00:00
@docker buildx build --file $( KYVERNOPRE_DIR) /Dockerfile --progress plain --load --platform $( LOCAL_PLATFORM) --tag $( REPO_KYVERNOPRE) :$( IMAGE_TAG_DEV) . --build-arg LD_FLAGS = $( LD_FLAGS_DEV)
2022-08-26 07:23:04 +00:00
2022-08-31 04:22:46 +00:00
.PHONY : docker -build -kyverno
2022-09-01 10:16:36 +00:00
docker-build-kyverno : docker -buildx -builder ## Build kyverno local image (with docker)
2022-09-28 12:39:03 +00:00
@echo Build kyverno local image with docker... >& 2
2022-09-27 17:47:59 +00:00
@docker buildx build --file $( KYVERNO_DIR) /Dockerfile --progress plain --load --platform $( LOCAL_PLATFORM) --tag $( REPO_KYVERNO) :$( IMAGE_TAG_DEV) . --build-arg LD_FLAGS = $( LD_FLAGS_DEV)
2022-08-26 07:23:04 +00:00
2022-08-31 04:22:46 +00:00
.PHONY : docker -build -cli
2022-09-01 10:16:36 +00:00
docker-build-cli : docker -buildx -builder ## Build cli local image (with docker)
2022-09-28 12:39:03 +00:00
@echo Build cli local image with docker... >& 2
2022-09-27 17:47:59 +00:00
@docker buildx build --file $( CLI_DIR) /Dockerfile --progress plain --load --platform $( LOCAL_PLATFORM) --tag $( REPO_CLI) :$( IMAGE_TAG_DEV) . --build-arg LD_FLAGS = $( LD_FLAGS_DEV)
2022-08-31 04:22:46 +00:00
.PHONY : docker -build -all
docker-build-all : docker -build -kyvernopre docker -build -kyverno docker -build -cli ## Build all local images (with docker)
####################
# PUBLISH (DOCKER) #
####################
.PHONY : docker -publish -kyvernopre
2022-09-01 10:16:36 +00:00
docker-publish-kyvernopre : docker -buildx -builder ## Build and publish kyvernopre image (with docker)
2022-09-27 17:47:59 +00:00
@docker buildx build --file $( KYVERNOPRE_DIR) /Dockerfile --progress plain --push --platform $( PLATFORMS) --tag $( REPO_KYVERNOPRE) :$( IMAGE_TAG) . --build-arg LD_FLAGS = $( LD_FLAGS)
2022-08-26 07:23:04 +00:00
2022-08-31 04:22:46 +00:00
.PHONY : docker -publish -kyvernopre -dev
2022-09-01 10:16:36 +00:00
docker-publish-kyvernopre-dev : docker -buildx -builder ## Build and publish kyvernopre dev image (with docker)
2022-08-31 10:41:58 +00:00
@docker buildx build --file $( KYVERNOPRE_DIR) /Dockerfile --progress plain --push --platform $( PLATFORMS) \
2022-09-27 17:47:59 +00:00
--tag $( REPO_KYVERNOPRE) :$( IMAGE_TAG_DEV) --tag $( REPO_KYVERNOPRE) :$( IMAGE_TAG_LATEST_DEV) -latest --tag $( REPO_KYVERNOPRE) :latest \
2022-08-30 14:06:30 +00:00
. --build-arg LD_FLAGS = $( LD_FLAGS_DEV)
2022-08-26 07:23:04 +00:00
2022-08-31 04:22:46 +00:00
.PHONY : docker -publish -kyverno
2022-09-01 10:16:36 +00:00
docker-publish-kyverno : docker -buildx -builder ## Build and publish kyverno image (with docker)
2022-09-27 17:47:59 +00:00
@docker buildx build --file $( KYVERNO_DIR) /Dockerfile --progress plain --push --platform $( PLATFORMS) --tag $( REPO_KYVERNO) :$( IMAGE_TAG) . --build-arg LD_FLAGS = $( LD_FLAGS)
2022-08-26 07:23:04 +00:00
2022-08-31 04:22:46 +00:00
.PHONY : docker -publish -kyverno -dev
2022-09-01 10:16:36 +00:00
docker-publish-kyverno-dev : docker -buildx -builder ## Build and publish kyverno dev image (with docker)
2022-08-31 10:41:58 +00:00
@docker buildx build --file $( KYVERNO_DIR) /Dockerfile --progress plain --push --platform $( PLATFORMS) \
2022-09-27 17:47:59 +00:00
--tag $( REPO_KYVERNO) :$( IMAGE_TAG_DEV) --tag $( REPO_KYVERNO) :$( IMAGE_TAG_LATEST_DEV) -latest --tag $( REPO_KYVERNO) :latest \
2022-08-30 14:06:30 +00:00
. --build-arg LD_FLAGS = $( LD_FLAGS_DEV)
2022-08-26 07:23:04 +00:00
2022-08-31 04:22:46 +00:00
.PHONY : docker -publish -cli
2022-09-01 10:16:36 +00:00
docker-publish-cli : docker -buildx -builder ## Build and publish cli image (with docker)
2022-09-27 17:47:59 +00:00
@docker buildx build --file $( CLI_DIR) /Dockerfile --progress plain --push --platform $( PLATFORMS) --tag $( REPO_CLI) :$( IMAGE_TAG) . --build-arg LD_FLAGS = $( LD_FLAGS)
2022-08-26 07:23:04 +00:00
2022-08-31 04:22:46 +00:00
.PHONY : docker -publish -cli -dev
2022-09-01 10:16:36 +00:00
docker-publish-cli-dev : docker -buildx -builder ## Build and publish cli dev image (with docker)
2022-08-31 10:41:58 +00:00
@docker buildx build --file $( CLI_DIR) /Dockerfile --progress plain --push --platform $( PLATFORMS) \
2022-09-27 17:47:59 +00:00
--tag $( REPO_CLI) :$( IMAGE_TAG_DEV) --tag $( REPO_CLI) :$( IMAGE_TAG_LATEST_DEV) -latest --tag $( REPO_CLI) :latest \
2022-08-31 04:22:46 +00:00
. --build-arg LD_FLAGS = $( LD_FLAGS_DEV)
2021-02-08 03:46:50 +00:00
2022-08-31 04:22:46 +00:00
.PHONY : docker -publish -all
2022-09-01 10:16:36 +00:00
docker-publish-all : docker -publish -kyvernopre docker -publish -kyverno docker -publish -cli ## Build and publish all images (with docker)
2019-06-05 01:05:10 +00:00
2022-08-31 04:22:46 +00:00
.PHONY : docker -publish -all -dev
2022-09-01 10:16:36 +00:00
docker-publish-all-dev : docker -publish -kyvernopre -dev docker -publish -kyverno -dev docker -publish -cli -dev ## Build and publish all dev images (with docker)
2020-08-06 06:26:31 +00:00
2022-09-02 13:34:22 +00:00
#################
# BUILD (IMAGE) #
#################
LOCAL_KYVERNOPRE_IMAGE := $( $( shell echo $( BUILD_WITH) | tr '[:lower:]' '[:upper:]' ) _KYVERNOPRE_IMAGE)
LOCAL_KYVERNO_IMAGE := $( $( shell echo $( BUILD_WITH) | tr '[:lower:]' '[:upper:]' ) _KYVERNO_IMAGE)
.PHONY : image -build -kyvernopre
image-build-kyvernopre : $( BUILD_WITH ) -build -kyvernopre
.PHONY : image -build -kyverno
image-build-kyverno : $( BUILD_WITH ) -build -kyverno
.PHONY : image -build -cli
image-build-cli : $( BUILD_WITH ) -build -cli
.PHONY : image -build -all
image-build-all : $( BUILD_WITH ) -build -all
2022-08-31 14:19:37 +00:00
###########
# CODEGEN #
###########
2022-09-01 06:14:56 +00:00
GOPATH_SHIM := ${ PWD } /.gopath
PACKAGE_SHIM := $( GOPATH_SHIM) /src/$( PACKAGE)
OUT_PACKAGE := $( PACKAGE) /pkg/client
INPUT_DIRS := $( PACKAGE) /api/kyverno/v1,$( PACKAGE) /api/kyverno/v1beta1,$( PACKAGE) /api/kyverno/v1alpha2,$( PACKAGE) /api/policyreport/v1alpha2
CLIENTSET_PACKAGE := $( OUT_PACKAGE) /clientset
LISTERS_PACKAGE := $( OUT_PACKAGE) /listers
INFORMERS_PACKAGE := $( OUT_PACKAGE) /informers
$(GOPATH_SHIM) :
2022-09-28 12:39:03 +00:00
@echo Create gopath shim... >& 2
2022-09-01 06:14:56 +00:00
@mkdir -p $( GOPATH_SHIM)
.INTERMEDIATE : $( PACKAGE_SHIM )
$(PACKAGE_SHIM) : $( GOPATH_SHIM )
2022-09-28 12:39:03 +00:00
@echo Create package shim... >& 2
2022-09-01 06:14:56 +00:00
@mkdir -p $( GOPATH_SHIM) /src/github.com/kyverno && ln -s -f ${ PWD } $( PACKAGE_SHIM)
.PHONY : codegen -client -clientset
codegen-client-clientset : $( PACKAGE_SHIM ) $( CLIENT_GEN ) ## Generate clientset
2022-09-28 12:39:03 +00:00
@echo Generate clientset... >& 2
2022-09-01 06:14:56 +00:00
@GOPATH= $( GOPATH_SHIM) $( CLIENT_GEN) --go-header-file ./scripts/boilerplate.go.txt --clientset-name versioned --output-package $( CLIENTSET_PACKAGE) --input-base "" --input $( INPUT_DIRS)
.PHONY : codegen -client -listers
codegen-client-listers : $( PACKAGE_SHIM ) $( LISTER_GEN ) ## Generate listers
2022-09-28 12:39:03 +00:00
@echo Generate listers... >& 2
2022-09-01 06:14:56 +00:00
@GOPATH= $( GOPATH_SHIM) $( LISTER_GEN) --go-header-file ./scripts/boilerplate.go.txt --output-package $( LISTERS_PACKAGE) --input-dirs $( INPUT_DIRS)
.PHONY : codegen -client -informers
codegen-client-informers : $( PACKAGE_SHIM ) $( INFORMER_GEN ) ## Generate informers
2022-09-28 12:39:03 +00:00
@echo Generate informers... >& 2
2022-09-01 06:14:56 +00:00
@GOPATH= $( GOPATH_SHIM) $( INFORMER_GEN) --go-header-file ./scripts/boilerplate.go.txt --output-package $( INFORMERS_PACKAGE) --input-dirs $( INPUT_DIRS) --versioned-clientset-package $( CLIENTSET_PACKAGE) /versioned --listers-package $( LISTERS_PACKAGE)
.PHONY : codegen -client -all
codegen-client-all : codegen -client -clientset codegen -client -listers codegen -client -informers ## Generate clientset, listers and informers
2022-08-31 14:19:37 +00:00
.PHONY : codegen -crds -kyverno
2022-09-01 10:16:36 +00:00
codegen-crds-kyverno : $( CONTROLLER_GEN ) ## Generate kyverno CRDs
2022-09-28 12:39:03 +00:00
@echo Generate kyverno crds... >& 2
2022-08-31 14:19:37 +00:00
@$( CONTROLLER_GEN) crd paths = ./api/kyverno/... crd:crdVersions= v1 output:dir= ./config/crds
.PHONY : codegen -crds -report
codegen-crds-report : $( CONTROLLER_GEN ) ## Generate policy reports CRDs
2022-09-28 12:39:03 +00:00
@echo Generate policy reports crds... >& 2
2022-08-31 14:19:37 +00:00
@$( CONTROLLER_GEN) crd paths = ./api/policyreport/... crd:crdVersions= v1 output:dir= ./config/crds
.PHONY : codegen -crds -all
codegen-crds-all : codegen -crds -kyverno codegen -crds -report ## Generate all CRDs
.PHONY : codegen -deepcopy -kyverno
2022-09-01 10:16:36 +00:00
codegen-deepcopy-kyverno : $( CONTROLLER_GEN ) $( GOIMPORTS ) ## Generate kyverno deep copy functions
2022-09-28 12:39:03 +00:00
@echo Generate kyverno deep copy functions... >& 2
2022-08-31 14:19:37 +00:00
@$( CONTROLLER_GEN) object:headerFile= "scripts/boilerplate.go.txt" paths = "./api/kyverno/..." && $( GOIMPORTS) -w ./api/kyverno
.PHONY : codegen -deepcopy -report
codegen-deepcopy-report : $( CONTROLLER_GEN ) $( GOIMPORTS ) ## Generate policy reports deep copy functions
2022-09-28 12:39:03 +00:00
@echo Generate policy reports deep copy functions... >& 2
2022-08-31 14:19:37 +00:00
@$( CONTROLLER_GEN) object:headerFile= "scripts/boilerplate.go.txt" paths = "./api/policyreport/..." && $( GOIMPORTS) -w ./api/policyreport
.PHONY : codegen -deepcopy -all
codegen-deepcopy-all : codegen -deepcopy -kyverno codegen -deepcopy -report ## Generate all deep copy functions
2022-09-01 11:23:31 +00:00
.PHONY : codegen -api -docs
codegen-api-docs : $( PACKAGE_SHIM ) $( GEN_CRD_API_REFERENCE_DOCS ) ## Generate API docs
2022-09-28 12:39:03 +00:00
@echo Generate api docs... >& 2
2022-10-21 14:51:15 +00:00
@rm -rf docs/user/crd && mkdir -p docs/user/crd
@GOPATH= $( GOPATH_SHIM) $( GEN_CRD_API_REFERENCE_DOCS) -v 4 \
-api-dir github.com/kyverno/kyverno/api \
-config docs/user/config.json \
-template-dir docs/user/template \
-out-file docs/user/crd/index.html
2022-09-01 11:23:31 +00:00
2022-09-02 15:14:04 +00:00
.PHONY : codegen -helm -docs
codegen-helm-docs : ## Generate helm docs
2022-09-28 12:39:03 +00:00
@echo Generate helm docs... >& 2
2022-09-29 09:06:37 +00:00
@docker run -v ${ PWD } /charts:/work -w /work jnorwood/helm-docs:v1.11.0 -s file
2022-09-02 15:14:04 +00:00
.PHONY : codegen -helm -crds
codegen-helm-crds : $( KUSTOMIZE ) codegen -crds -all ## Generate helm CRDs
2022-10-03 15:12:43 +00:00
@echo Create temp folder for kustomization... >& 2
@mkdir -p config/.helm
@echo Create kustomization... >& 2
@VERSION= '"{{.Chart.AppVersion}}"' TOP_PATH = ".." envsubst < config/templates/labels.yaml.envsubst > config/.helm/labels.yaml
@VERSION= dummy TOP_PATH = ".." envsubst < config/templates/kustomization.yaml.envsubst > config/.helm/kustomization.yaml
2022-09-28 12:39:03 +00:00
@echo Generate helm crds... >& 2
2022-10-03 15:12:43 +00:00
@$( KUSTOMIZE) build ./config/.helm | $( KUSTOMIZE) cfg grep kind = CustomResourceDefinition | $( SED) -e "1i{{- if .Values.installCRDs }}" -e '$$a{{- end }}' > ./charts/kyverno/templates/crds.yaml
2022-09-02 15:14:04 +00:00
.PHONY : codegen -helm -all
codegen-helm-all : codegen -helm -crds codegen -helm -docs ## Generate helm docs and CRDs
2022-09-27 06:08:06 +00:00
.PHONY : codegen -install
codegen-install : $( KUSTOMIZE ) ## Create install maifests
2022-10-03 15:12:43 +00:00
@echo Create kustomization... >& 2
@VERSION= latest TOP_PATH = "." envsubst < config/templates/labels.yaml.envsubst > config/labels.yaml
@VERSION= latest TOP_PATH = "." envsubst < config/templates/kustomization.yaml.envsubst > config/kustomization.yaml
2022-09-28 12:39:03 +00:00
@echo Generate install.yaml... >& 2
2022-09-27 06:08:06 +00:00
@$( KUSTOMIZE) build ./config > ./config/install.yaml
2022-09-28 12:39:03 +00:00
@echo Generate install_debug.yaml... >& 2
2022-09-27 06:08:06 +00:00
@$( KUSTOMIZE) build ./config/debug > ./config/install_debug.yaml
# guidance https://github.com/kyverno/kyverno/wiki/Generate-a-Release
.PHONY : codegen -release
codegen-release : codegen -install $( KUSTOMIZE ) ## Create release maifests
2022-10-03 15:12:43 +00:00
@echo Create release folder... >& 2
@mkdir -p config/.release
@echo Create kustomization... >& 2
@VERSION= $( GIT_VERSION) TOP_PATH = ".." envsubst < config/templates/labels.yaml.envsubst > config/.release/labels.yaml
@VERSION= $( GIT_VERSION) TOP_PATH = ".." envsubst < config/templates/kustomization.yaml.envsubst > config/.release/kustomization.yaml
@echo Generate release manifests... >& 2
@$( KUSTOMIZE) build ./config/.release > ./config/.release/install.yaml
2022-09-27 06:08:06 +00:00
2022-09-10 18:01:10 +00:00
.PHONY : codegen -quick
2022-09-27 06:08:06 +00:00
codegen-quick : codegen -deepcopy -all codegen -crds -all codegen -api -docs codegen -helm -all codegen -install codegen -release ## Generate all generated code except client
.PHONY : codegen -slow
codegen-slow : codegen -client -all ## Generate client code
2022-09-10 18:01:10 +00:00
2022-08-31 14:19:37 +00:00
.PHONY : codegen -all
2022-09-27 06:08:06 +00:00
codegen-all : codegen -quick codegen -slow ## Generate all generated code
2022-08-31 14:19:37 +00:00
2022-09-28 11:45:16 +00:00
# .PHONY: codegen-openapi
# codegen-openapi: $(PACKAGE_SHIM) $(OPENAPI_GEN) ## Generate open api code
2022-10-03 15:12:43 +00:00
# @echo Generate open api definitions... >&2
2022-09-28 11:45:16 +00:00
# @GOPATH=$(GOPATH_SHIM) $(OPENAPI_GEN) --go-header-file ./scripts/boilerplate.go.txt \
# --input-dirs $(INPUT_DIRS) \
# --input-dirs k8s.io/apimachinery/pkg/apis/meta/v1,k8s.io/apimachinery/pkg/runtime,k8s.io/apimachinery/pkg/version \
# --output-package $(OUT_PACKAGE)/openapi \
# -O zz_generated.openapi
2022-09-02 09:49:35 +00:00
##################
# VERIFY CODEGEN #
##################
.PHONY : verify -crds
verify-crds : codegen -crds -all ## Check CRDs are up to date
@git --no-pager diff config
2022-10-03 15:12:43 +00:00
@echo 'If this test fails, it is because the git diff is non-empty after running "make codegen-crds-all".' >& 2
@echo 'To correct this, locally run "make codegen-crds-all", commit the changes, and re-run tests.' >& 2
2022-09-02 09:49:35 +00:00
@git diff --quiet --exit-code config
.PHONY : verify -client
verify-client : codegen -client -all ## Check client is up to date
2022-09-28 09:31:06 +00:00
@git --no-pager diff --ignore-space-change pkg/client
2022-10-03 15:12:43 +00:00
@echo 'If this test fails, it is because the git diff is non-empty after running "make codegen-client-all".' >& 2
@echo 'To correct this, locally run "make codegen-client-all", commit the changes, and re-run tests.' >& 2
2022-09-28 09:31:06 +00:00
@git diff --ignore-space-change --quiet --exit-code pkg/client
2022-09-02 09:49:35 +00:00
.PHONY : verify -deepcopy
verify-deepcopy : codegen -deepcopy -all ## Check deepcopy functions are up to date
@git --no-pager diff api
2022-10-03 15:12:43 +00:00
@echo 'If this test fails, it is because the git diff is non-empty after running "make codegen-deepcopy-all".' >& 2
@echo 'To correct this, locally run "make codegen-deepcopy-all", commit the changes, and re-run tests.' >& 2
2022-09-02 09:49:35 +00:00
@git diff --quiet --exit-code api
.PHONY : verify -api -docs
verify-api-docs : codegen -api -docs ## Check api reference docs are up to date
2022-10-21 14:51:15 +00:00
@git --no-pager diff docs/user
2022-10-03 15:12:43 +00:00
@echo 'If this test fails, it is because the git diff is non-empty after running "make codegen-api-docs".' >& 2
@echo 'To correct this, locally run "make codegen-api-docs", commit the changes, and re-run tests.' >& 2
2022-10-21 14:51:15 +00:00
@git diff --quiet --exit-code docs/user
2022-09-02 09:49:35 +00:00
2022-09-02 15:14:04 +00:00
.PHONY : verify -helm
verify-helm : codegen -helm -all ## Check Helm charts are up to date
@git --no-pager diff charts
2022-10-03 15:12:43 +00:00
@echo 'If this test fails, it is because the git diff is non-empty after running "make codegen-helm-all".' >& 2
@echo 'To correct this, locally run "make codegen-helm", commit the changes, and re-run tests.' >& 2
2022-09-02 15:14:04 +00:00
@git diff --quiet --exit-code charts
2022-09-02 09:49:35 +00:00
.PHONY : verify -codegen
verify-codegen : verify -crds verify -client verify -deepcopy verify -api -docs verify -helm ## Verify all generated code and docs are up to date
2022-09-28 03:55:17 +00:00
##############
# UNIT TESTS #
##############
2022-03-25 16:08:38 +00:00
2022-09-28 03:55:17 +00:00
CODE_COVERAGE_FILE := coverage
CODE_COVERAGE_FILE_TXT := $( CODE_COVERAGE_FILE) .txt
CODE_COVERAGE_FILE_HTML := $( CODE_COVERAGE_FILE) .html
2022-08-26 07:23:04 +00:00
2022-09-28 03:55:17 +00:00
.PHONY : test
test : test -clean test -unit test -e 2e ## Clean tests cache then run unit and e2e tests
2022-08-26 07:23:04 +00:00
2022-09-28 03:55:17 +00:00
.PHONY : test -clean
test-clean : ## Clean tests cache
2022-09-28 12:39:03 +00:00
@echo Clean test cache... >& 2
2022-09-28 03:55:17 +00:00
@go clean -testcache ./...
2022-03-25 16:08:38 +00:00
2022-09-28 03:55:17 +00:00
.PHONY : test -unit
test-unit : test -clean $( GO_ACC ) ## Run unit tests
2022-09-28 12:39:03 +00:00
@echo Running unit tests... >& 2
2022-09-28 03:55:17 +00:00
@$( GO_ACC) ./... -o $( CODE_COVERAGE_FILE_TXT)
2020-08-11 00:16:13 +00:00
2022-09-28 03:55:17 +00:00
.PHONY : code -cov -report
code-cov-report : test -clean ## Generate code coverage report
2022-09-28 12:39:03 +00:00
@echo Generating code coverage report... >& 2
2022-09-28 03:55:17 +00:00
@GO111MODULE= on go test -v -coverprofile= coverage.out ./...
@go tool cover -func= coverage.out -o $( CODE_COVERAGE_FILE_TXT)
@go tool cover -html= coverage.out -o $( CODE_COVERAGE_FILE_HTML)
2019-06-07 18:50:12 +00:00
2022-10-21 03:51:14 +00:00
#####################
# CONFORMANCE TESTS #
#####################
.PHONY : test -conformance
test-conformance : ## Run conformance tests
@echo Running conformance tests... >& 2
@go run ./test/conformance
.PHONY : kind -test -conformance
kind-test-conformance : kind -deploy -kyverno ## Run conformance tests on a local cluster
@echo Running conformance tests... >& 2
@go run ./test/conformance --create-cluster= false
2022-09-28 03:55:17 +00:00
#############
# CLI TESTS #
#############
2019-06-07 18:50:12 +00:00
2022-09-28 03:55:17 +00:00
TEST_GIT_BRANCH ?= main
2021-07-10 01:01:46 +00:00
2022-02-24 15:34:12 +00:00
.PHONY : test -cli
2022-09-28 03:55:17 +00:00
test-cli : test -cli -policies test -cli -local test -cli -local -mutate test -cli -local -generate test -cli -test -case -selector -flag test -cli -registry ## Run all CLI tests
2022-02-24 15:34:12 +00:00
.PHONY : test -cli -policies
2022-08-30 15:30:28 +00:00
test-cli-policies : $( CLI_BIN )
@$( CLI_BIN) test https://github.com/kyverno/policies/$( TEST_GIT_BRANCH)
2022-02-24 15:34:12 +00:00
.PHONY : test -cli -local
2022-08-30 15:30:28 +00:00
test-cli-local : $( CLI_BIN )
@$( CLI_BIN) test ./test/cli/test
2022-02-24 15:34:12 +00:00
.PHONY : test -cli -local -mutate
2022-08-30 15:30:28 +00:00
test-cli-local-mutate : $( CLI_BIN )
@$( CLI_BIN) test ./test/cli/test-mutate
2022-02-24 15:34:12 +00:00
2022-05-25 14:26:22 +00:00
.PHONY : test -cli -local -generate
2022-08-30 15:30:28 +00:00
test-cli-local-generate : $( CLI_BIN )
@$( CLI_BIN) test ./test/cli/test-generate
2022-05-25 14:26:22 +00:00
2022-03-09 07:40:53 +00:00
.PHONY : test -cli -test -case -selector -flag
2022-08-30 15:30:28 +00:00
test-cli-test-case-selector-flag : $( CLI_BIN )
@$( CLI_BIN) test ./test/cli/test --test-case-selector "policy=disallow-latest-tag, rule=require-image-tag, resource=test-require-image-tag-pass"
2021-07-10 01:01:46 +00:00
2022-03-16 04:26:47 +00:00
.PHONY : test -cli -registry
2022-08-30 15:30:28 +00:00
test-cli-registry : $( CLI_BIN )
@$( CLI_BIN) test ./test/cli/registry --registry
2022-03-16 04:26:47 +00:00
2022-09-28 03:55:17 +00:00
##################################
# Create e2e Infrastructure
##################################
.PHONY : kind -e 2e -cluster
kind-e2e-cluster : $( KIND ) ## Create kind cluster for e2e tests
$( KIND) create cluster --image= $( KIND_IMAGE)
2019-06-07 18:50:12 +00:00
2022-09-28 03:55:17 +00:00
# TODO(eddycharly): $(REPO) is wrong, it is always ghcr.io/kyverno in the source
.PHONY : e 2e -kustomize
e2e-kustomize : $( KUSTOMIZE ) ## Build kustomize manifests for e2e tests
cd config && \
$( KUSTOMIZE) edit set image $( REPO_KYVERNOPRE) = $( LOCAL_KYVERNOPRE_IMAGE) :$( IMAGE_TAG_DEV) && \
$( KUSTOMIZE) edit set image $( REPO_KYVERNO) = $( LOCAL_KYVERNO_IMAGE) :$( IMAGE_TAG_DEV)
$( KUSTOMIZE) build config/ -o config/install.yaml
.PHONY : e 2e -init -container
e2e-init-container : kind -e 2e -cluster | image -build -kyvernopre
$( KIND) load docker-image $( LOCAL_KYVERNOPRE_IMAGE) :$( IMAGE_TAG_DEV)
.PHONY : e 2e -kyverno -container
e2e-kyverno-container : kind -e 2e -cluster | image -build -kyverno
$( KIND) load docker-image $( LOCAL_KYVERNO_IMAGE) :$( IMAGE_TAG_DEV)
.PHONY : create -e 2e -infrastructure
create-e2e-infrastructure : e 2e -init -container e 2e -kyverno -container e 2e -kustomize | ## Setup infrastructure for e2e tests
##################################
# Testing & Code-Coverage
##################################
2020-06-04 18:45:37 +00:00
2020-08-06 05:16:10 +00:00
# Test E2E
test-e2e :
2022-08-31 09:58:27 +00:00
E2E = ok K8S_VERSION = $( K8S_VERSION) go test ./test/e2e/verifyimages -v
E2E = ok K8S_VERSION = $( K8S_VERSION) go test ./test/e2e/metrics -v
E2E = ok K8S_VERSION = $( K8S_VERSION) go test ./test/e2e/mutate -v
E2E = ok K8S_VERSION = $( K8S_VERSION) go test ./test/e2e/generate -v
2020-08-06 05:16:10 +00:00
2021-07-27 06:49:28 +00:00
test-e2e-local :
2021-10-29 16:13:20 +00:00
kubectl apply -f https://raw.githubusercontent.com/kyverno/kyverno/main/config/github/rbac.yaml
2021-07-27 06:49:28 +00:00
kubectl port-forward -n kyverno service/kyverno-svc-metrics 8000:8000 &
2022-08-31 09:58:27 +00:00
E2E = ok K8S_VERSION = $( K8S_VERSION) go test ./test/e2e/verifyimages -v
E2E = ok K8S_VERSION = $( K8S_VERSION) go test ./test/e2e/metrics -v
E2E = ok K8S_VERSION = $( K8S_VERSION) go test ./test/e2e/mutate -v
E2E = ok K8S_VERSION = $( K8S_VERSION) go test ./test/e2e/generate -v
2021-07-27 06:49:28 +00:00
kill $!
2022-02-04 06:47:36 +00:00
helm-test-values :
sed -i -e "s|nameOverride:.*|nameOverride: kyverno|g" charts/kyverno/values.yaml
sed -i -e "s|fullnameOverride:.*|fullnameOverride: kyverno|g" charts/kyverno/values.yaml
sed -i -e "s|namespace:.*|namespace: kyverno|g" charts/kyverno/values.yaml
2022-08-25 18:32:40 +00:00
sed -i -e " s|tag: # replaced in e2e tests.*|tag: $( IMAGE_TAG_DEV) | " charts/kyverno/values.yaml
2022-09-02 13:34:22 +00:00
sed -i -e " s|repository: ghcr.io/kyverno/kyvernopre # init: replaced in e2e tests|repository: $( LOCAL_KYVERNOPRE_IMAGE) | " charts/kyverno/values.yaml
sed -i -e " s|repository: ghcr.io/kyverno/kyverno # kyverno: replaced in e2e tests|repository: $( LOCAL_KYVERNO_IMAGE) | " charts/kyverno/values.yaml
2022-02-04 06:47:36 +00:00
2021-08-10 16:07:46 +00:00
release-notes :
2021-08-12 16:58:25 +00:00
@bash -c 'while IFS= read -r line ; do if [[ "$$line" == "## "* && "$$line" != "## $(VERSION)" ]]; then break ; fi; echo "$$line"; done < "CHANGELOG.md"' \
2021-08-10 16:07:46 +00:00
true
2022-10-06 07:41:05 +00:00
#########
# DEBUG #
#########
.PHONY : debug -deploy
debug-deploy : codegen -install ## Install debug manifests
@kubectl create -f ./config/install_debug.yaml || kubectl replace -f ./config/install_debug.yaml
2022-10-03 15:12:43 +00:00
##########
# GITHUB #
##########
.PHONY : gh -install -pin -github -action
gh-install-pin-github-action :
@npm install -g pin-github-action
.PHONY : gh -pin -actions
gh-pin-actions : gh -install -pin -github -action
@pin-github-action ./.github/workflows/release.yaml
2022-08-31 08:06:12 +00:00
########
# KIND #
########
2022-03-16 13:48:31 +00:00
2022-08-31 08:06:12 +00:00
.PHONY : kind -create -cluster
2022-09-01 10:16:36 +00:00
kind-create-cluster : $( KIND ) ## Create kind cluster
2022-09-28 12:39:03 +00:00
@echo Create kind cluster... >& 2
2022-08-31 08:06:12 +00:00
@$( KIND) create cluster --name $( KIND_NAME) --image $( KIND_IMAGE)
2022-04-04 20:16:45 +00:00
2022-08-31 08:06:12 +00:00
.PHONY : kind -delete -cluster
2022-09-01 10:16:36 +00:00
kind-delete-cluster : $( KIND ) ## Delete kind cluster
2022-09-28 12:39:03 +00:00
@echo Delete kind cluster... >& 2
2022-08-31 08:06:12 +00:00
@$( KIND) delete cluster --name $( KIND_NAME)
.PHONY : kind -load -kyvernopre
2022-09-02 13:34:22 +00:00
kind-load-kyvernopre : $( KIND ) image -build -kyvernopre ## Build kyvernopre image and load it in kind cluster
2022-09-28 12:39:03 +00:00
@echo Load kyvernopre image... >& 2
2022-09-02 13:34:22 +00:00
@$( KIND) load docker-image --name $( KIND_NAME) $( LOCAL_KYVERNOPRE_IMAGE) :$( IMAGE_TAG_DEV)
2022-08-31 08:06:12 +00:00
.PHONY : kind -load -kyverno
2022-09-02 13:34:22 +00:00
kind-load-kyverno : $( KIND ) image -build -kyverno ## Build kyverno image and load it in kind cluster
2022-09-28 12:39:03 +00:00
@echo Load kyverno image... >& 2
2022-09-02 13:34:22 +00:00
@$( KIND) load docker-image --name $( KIND_NAME) $( LOCAL_KYVERNO_IMAGE) :$( IMAGE_TAG_DEV)
2022-08-31 08:06:12 +00:00
.PHONY : kind -load -all
2022-09-01 10:16:36 +00:00
kind-load-all : kind -load -kyvernopre kind -load -kyverno ## Build images and load them in kind cluster
2022-08-31 08:06:12 +00:00
.PHONY : kind -deploy -kyverno
2022-10-20 12:17:33 +00:00
kind-deploy-kyverno : $( HELM ) kind -load -all ## Build images, load them in kind cluster and deploy kyverno helm chart
2022-09-28 12:39:03 +00:00
@echo Install kyverno chart... >& 2
2022-10-20 12:17:33 +00:00
@$( HELM) upgrade --install kyverno --namespace kyverno --wait --create-namespace ./charts/kyverno \
2022-09-02 13:34:22 +00:00
--set image.repository= $( LOCAL_KYVERNO_IMAGE) \
2022-04-04 20:16:45 +00:00
--set image.tag= $( IMAGE_TAG_DEV) \
2022-09-02 13:34:22 +00:00
--set initImage.repository= $( LOCAL_KYVERNOPRE_IMAGE) \
2022-04-04 20:16:45 +00:00
--set initImage.tag= $( IMAGE_TAG_DEV) \
2022-10-03 15:42:52 +00:00
--set initContainer.extraArgs= { --loggingFormat= text} \
2022-09-30 08:12:21 +00:00
--set "extraArgs={--autogenInternals=true,--loggingFormat=text}"
2022-09-28 12:39:03 +00:00
@echo Restart kyverno pods... >& 2
2022-09-12 10:23:58 +00:00
@kubectl rollout restart deployment -n kyverno kyverno
2022-08-31 08:06:12 +00:00
.PHONY : kind -deploy -kyverno -policies
2022-10-20 12:17:33 +00:00
kind-deploy-kyverno-policies : $( HELM ) ## Deploy kyverno-policies helm chart
2022-09-28 12:39:03 +00:00
@echo Install kyverno-policies chart... >& 2
2022-10-20 12:17:33 +00:00
@$( HELM) upgrade --install kyverno-policies --namespace kyverno --create-namespace ./charts/kyverno-policies
2022-08-31 08:06:12 +00:00
2022-09-15 06:18:02 +00:00
.PHONY : kind -deploy -metrics -server
2022-10-20 12:17:33 +00:00
kind-deploy-metrics-server : $( HELM ) ## Deploy metrics-server helm chart
2022-09-28 12:39:03 +00:00
@echo Install metrics-server chart... >& 2
2022-10-20 12:17:33 +00:00
@$( HELM) upgrade --install metrics-server --repo https://charts.bitnami.com/bitnami metrics-server -n kube-system \
2022-09-15 06:18:02 +00:00
--set extraArgs = { --kubelet-insecure-tls= true} \
--set apiService.create= true
2022-08-31 08:06:12 +00:00
.PHONY : kind -deploy -all
2022-09-15 06:18:02 +00:00
kind-deploy-all : kind -deploy -metrics -server | kind -deploy -kyverno kind -deploy -kyverno -policies ## Build images, load them in kind cluster and deploy helm charts
2022-08-31 08:06:12 +00:00
2022-09-15 04:15:49 +00:00
.PHONY : kind -deploy -reporter
2022-10-20 12:17:33 +00:00
kind-deploy-reporter : $( HELM ) ## Deploy policy-reporter helm chart
2022-09-28 12:39:03 +00:00
@echo Install policy-reporter chart... >& 2
2022-10-20 12:17:33 +00:00
@$( HELM) upgrade --install policy-reporter --repo https://kyverno.github.io/policy-reporter policy-reporter -n policy-reporter \
2022-09-15 04:15:49 +00:00
--set ui.enabled= true \
--set kyvernoPlugin.enabled= true \
--create-namespace
@kubectl port-forward -n policy-reporter services/policy-reporter-ui 8082:8080
2022-08-31 08:06:12 +00:00
########
# HELP #
########
.PHONY : help
help : ## Shows the available commands
2022-09-01 10:16:36 +00:00
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $( MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-40s\033[0m %s\n", $$1, $$2}'