blob: 0b07b4b767a4fd782531b49e072ae33e68d1c756 (
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
|
# SPDX-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)")
GOPATH := $(shell realpath "$(PWD)/../../../../../../")
COP = ${PWD}/build/_output/bin/collectd-operator
IMAGE_NAME = dcr.cluster.local/collectd-operator:latest
export GOPATH ...
export GO111MODULE=on
.PHONY: clean plugins
## all: Generate the k8s and openapi artifacts using operator-sdk
all: clean vendor
GOOS=linux GOARCH=amd64
operator-sdk generate k8s --verbose
operator-sdk generate openapi --verbose
#@go build -o ${COP} -gcflags all=-trimpath=${GOPATH} -asmflags all=-trimpath=${GOPATH} -mod=vendor demo/vnfs/DAaaS/microservices/collectd-operator/cmd/manager
@operator-sdk build ${IMAGE_NAME} --verbose
# The following is done this way as each patch on CI runs build and each merge runs deploy. So for build we don't need to build binary and hence
# no need to create a static binary with additional flags. However, for generating binary, additional build flags are necessary. This if used with
# mock plugin errors out for unit tests. So the seperation avoids the error.
## build: clean the
build: clean test cover
deploy: build publish
vendor:
@go mod vendor
publish:
@docker push ${IMAGE_NAME}
.PHONY: test
test: clean
@go test -v ./...
format:
@go fmt ./...
clean:
@echo "Deleting the collectd-operator binary"
@rm -rf ${PWD}/build/_output/bin/collectd-operator
@echo "Deleting the collectd-operator docker image"
@docker rmi ${IMAGE_NAME}
.PHONY: cover
cover:
@go test ./... -coverprofile=coverage.out
@go tool cover -html=coverage.out -o coverage.html
.PHONY: help
## help: Print help message
help: Makefile
@echo
@echo " Requires -\\t Operator SDK v0.8.0+, go1.12.5+"
@echo
@echo " Choose a command run in "$(PROJECTNAME)":"
@echo
@sed -n 's/^## //p' $< | column -t -s ':' | sed -e 's/^/ /'
@echo
|