Fix issue with concurrent CR creation
[demo.git] / vnfs / DAaaS / microservices / 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 # Common
11 VERSION := $(shell git describe --tags)
12 BUILD := $(shell git rev-parse --short HEAD)
13 PROJECTNAME := $(shell basename "$(PWD)")
14
15 ROOTPATH := $(shell realpath "$(PWD)/../")
16 COP := ${PWD}/build/_output/bin/collectd-operator
17 COP_LOCAL := ${COP}-local
18 ifndef IMAGE_NAME
19 override IMAGE_NAME := dcr.cluster.local:32644/collectd-operator:latest
20 endif
21
22 export GO111MODULE=on
23
24 .PHONY: clean plugins
25
26 ## build: Generate the k8s and openapi artifacts using operator-sdk
27 build: clean format
28         GOOS=linux GOARCH=amd64
29         operator-sdk generate k8s --verbose
30         operator-sdk generate openapi --verbose
31         @go build -o ${COP_LOCAL} collectd-operator/cmd/manager
32         @operator-sdk build ${IMAGE_NAME} --verbose
33
34 # 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
35 # no need to create a static binary with additional flags. However, for generating binary, additional build flags are necessary. This if used with
36 # mock plugin errors out for unit tests. So the seperation avoids the error.
37
38 ## all: Delete the image, binary, complete build, test and run coverage
39 all: build test cover
40 ## debug: Build local binary for debugging
41 debug:
42         @echo "Deleting ${COP_LOCAL} binary"
43         @rm -rf ${COP_LOCAL}
44         operator-sdk generate k8s --verbose
45         operator-sdk generate openapi --verbose
46         @echo "Building ${COP_LOCAL} binary"
47         @go build -o ${COP_LOCAL} collectd-operator/cmd/manager
48
49 ## deploy: Build Dockerfile and publish to repository
50 deploy: build publish
51
52 ## publish: Push docker image to repository
53 publish:
54         @docker push ${IMAGE_NAME}
55 .PHONY: test
56 ## test: run tests
57 test: clean
58         @go test -v ./...
59 ## format: format source code
60 format:
61         @go fmt ./...
62
63 ## clean: clean build artifacts, image, binary 
64 clean:
65         @echo "Deleting the collectd-operator binary"
66         @rm -rf ${COP}
67         @rm -rf ${COP_LOCAL}
68         @echo "Deleting the collectd-operator docker image"
69         @docker 2>/dev/null rmi ${IMAGE_NAME} | true
70
71 .PHONY: cover
72 ## cover: run tests and generate coverage report
73 cover:
74         @go test ./... -coverprofile=coverage.out
75         @go tool cover -html=coverage.out -o coverage.html
76
77 .PHONY: help
78 ## help: Print help message
79 help: Makefile
80         @echo
81         @echo " Requires Operator SDK v0.8.0+, go1.12.5+"
82         @echo
83         @echo " Choose a command run in "$(PROJECTNAME)":"
84         @echo
85         @sed -n 's/^## //p' $< | column -t -s ':' |  sed -e 's/^/ /'
86         @echo