Collectd Operator API
[demo.git] / vnfs / DAaaS / collectd-operator / Makefile
1 # SPDX-license-identifier: Apache-2.0
2 ##############################################################################
3 # Copyright (c) 2019 Intel Corporation
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 GOPATH := $(shell realpath "$(PWD)/../../../../../")
11 COP = ${PWD}/build/_output/bin/collectd-operator
12 IMAGE_NAME = dcr.cluster.local:31976/collectd-operator:latest
13
14 export GOPATH ...
15 export GO111MODULE=on
16
17 .PHONY: clean plugins
18
19
20 all: clean
21         GOOS=linux GOARCH=amd64
22         operator-sdk generate k8s --verbose
23         operator-sdk generate openapi --verbose
24         #@go build -o ${COP} -gcflags all=-trimpath=${GOPATH} -asmflags all=-trimpath=${GOPATH} -mod=vendor demo/vnfs/DAaaS/collectd-operator/cmd/manager
25         @operator-sdk build ${IMAGE_NAME} --verbose
26
27 # 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
28 # no need to create a static binary with additional flags. However, for generating binary, additional build flags are necessary. This if used with
29 # mock plugin errors out for unit tests. So the seperation avoids the error.
30
31 build: clean test cover
32 deploy: build publish
33
34 publish:
35         @docker push ${IMAGE_NAME}
36 .PHONY: test
37 test: clean
38         @go test -v ./...
39
40 format:
41         @go fmt ./...
42
43 clean:
44         @echo "Deleting the collectd-operator binary"
45         @rm -rf ${PWD}/build/_output/bin/collectd-operator
46         @echo "Deleting the collectd-operator docker image"
47         @docker rmi ${IMAGE_NAME}
48
49 .PHONY: cover
50 cover:
51         @go test ./... -coverprofile=coverage.out
52         @go tool cover -html=coverage.out -o coverage.html