blob: cdfed722abbd52a8481487b66d36dd2acbfc0411 (
plain)
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
|
PDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2019 Intel Corporation
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
# Common
VERSION := $(shell git describe --tags)
BUILD := $(shell git rev-parse --short HEAD)
PROJECTNAME := $(shell basename "$(pwd)")
PromOP := ${PWD}/build/_output/bin/remote-config-operator
PromOP_LOCAL := ${PromOP}-local
ifndef IMAGE_NAME
override IMAGE_NAME := dcr.cluster.local:32644/remote-config-operator:latest
endif
export GO111MODULE=on
.PHONY: clean publish
## build: Generate the k8s and openapi artifacts using operator-sdk
build: clean
GOOS=linux GOARCH=amd64
@operator-sdk generate k8s --verbose
@operator-sdk generate openapi --verbose
@operator-sdk build ${IMAGE_NAME} --verbose
@go build -o ${PromOP_LOCAL} remote-config-operator/cmd/manager
## all: Delete the image, binary, complete build, test and run coverage
all: build test cover
## debug: Build local binary for debugging
debug:
@echo "Deleting ${PromOP_LOCAL} binary"
@rm -rf ${PromOP_LOCAL}
operator-sdk generate k8s --verbose
operator-sdk generate openapi --verbose
@echo "Building ${PromOP_LOCAL} binary"
@go build -o ${PromOP_LOCAL} remote-config-operator/cmd/manager
## deploy: Build Dockerfile and publish to repository
deploy: build test publish
## clean: clean build artifacts, image, binary
clean:
@echo "Deleting the remote-config-operator binary"
@rm -rf ${PromOP}
@rm -rf ${PromOP_LOCAL}
@if docker images $(IMAGE_NAME) | awk '{ print $$2 }' | grep -q -F latest; then echo "Deleting the remote-config-operator docker image"; docker rmi ${IMAGE_NAME}; fi
## publish: Push docker image to registry
publish:
@docker push ${IMAGE_NAME}
.PHONY: test
## test: run tests
test: clean
@go test -v ./...
.PHONY: cover
## cover: run tests and generate coverage report
cover:
@go test ./... -coverprofile=coverage.out
@go tool cover -html=coverage.out -o coverage.html
## format: format source code
format:
@go fmt ./...
.PHONY: help
## help: Print help message
help: Makefile
@echo
@echo " Requires Operator SDK v0.12.0+, go1.13.1+"
@echo
@echo " Choose a command run in "$(PROJECTNAME)":"
@echo
@sed -n 's/^## //p' $< | column -t -s ':' | sed -e 's/^/ /'
@echo
|