63 lines
1.7 KiB
Makefile
63 lines
1.7 KiB
Makefile
|
|
# Image URL to use all building/pushing image targets
|
|
IMG ?= gcr.io/kubeflow-images-public/notebook-controller
|
|
TAG ?= $(eval TAG := $(shell date +v%Y%m%d)-$(shell git describe --tags --always --dirty)-$(shell git diff | shasum -a256 | cut -c -6))$(TAG)
|
|
GOLANG_VERSION ?= 1.11.2
|
|
|
|
all: test manager
|
|
|
|
# Run tests
|
|
test: generate fmt vet manifests
|
|
go test ./pkg/... ./cmd/... -coverprofile cover.out
|
|
|
|
# Build manager binary
|
|
manager: generate fmt vet
|
|
go build -o bin/manager github.com/kubeflow/kubeflow/components/notebook-controller/cmd/manager
|
|
|
|
# Run against the configured Kubernetes cluster in ~/.kube/config
|
|
run: generate fmt vet
|
|
go run ./cmd/manager/main.go
|
|
|
|
# Install CRDs into a cluster
|
|
install: manifests
|
|
kubectl apply -f config/crds
|
|
|
|
# Deploy controller in the configured Kubernetes cluster in ~/.kube/config
|
|
deploy: manifests
|
|
kubectl apply -f config/crds
|
|
kustomize build config/default | kubectl apply -f -
|
|
|
|
# Generate manifests e.g. CRD, RBAC etc.
|
|
manifests:
|
|
go run vendor/sigs.k8s.io/controller-tools/cmd/controller-gen/main.go all
|
|
|
|
# Run go fmt against code
|
|
fmt:
|
|
go fmt ./pkg/... ./cmd/...
|
|
|
|
# Run go vet against code
|
|
vet:
|
|
go vet ./pkg/... ./cmd/...
|
|
|
|
# Generate code
|
|
generate:
|
|
go generate ./pkg/... ./cmd/...
|
|
|
|
# Build the docker image
|
|
docker-build: test
|
|
docker build . -t ${IMG} --build-arg GOLANG_VERSION=$(GOLANG_VERSION)
|
|
@echo "updating kustomize image patch file for manager resource"
|
|
sed -i'' -e 's@image: .*@image: '"${IMG}"'@' ./config/default/manager_image_patch.yaml
|
|
|
|
# Push the docker image
|
|
docker-push:
|
|
docker push ${IMG}
|
|
|
|
build-gcr: test
|
|
docker build -t $(IMG):$(TAG) .
|
|
@echo Built $(IMG):$(TAG)
|
|
|
|
push-gcr: build-gcr
|
|
docker push $(IMG):$(TAG)
|
|
@echo Pushed $(IMG):$(TAG)
|