From 2026cb5283fbc44a4f68641f6e85628381ebda04 Mon Sep 17 00:00:00 2001 From: Srivahni Date: Thu, 24 Oct 2019 14:08:58 -0700 Subject: Add/update/delete PrometheusRemoteEndpoint CR PrometheusRemoteEndpoint CR when applied, a remote write endpoint is added/updated/deleted in prometheus. Issue-ID: ONAPARC-393 Signed-off-by: Srivahni Change-Id: I8cdc0b673b35be3457a2b12c6769cd3cf62ac6c5 --- .../microservices/remote-config-operator/Makefile | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 vnfs/DAaaS/microservices/remote-config-operator/Makefile (limited to 'vnfs/DAaaS/microservices/remote-config-operator/Makefile') diff --git a/vnfs/DAaaS/microservices/remote-config-operator/Makefile b/vnfs/DAaaS/microservices/remote-config-operator/Makefile new file mode 100644 index 00000000..15d04b06 --- /dev/null +++ b/vnfs/DAaaS/microservices/remote-config-operator/Makefile @@ -0,0 +1,56 @@ +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)") + +ROOTPATH := $(shell realpath "$(PWD)/../../../../../../") +PromOP := ${PWD}/build/_output/bin/remote-config-operator +PromOP_LOCAL := ${PromOP}-local +IMAGE_NAME := dcr.cluster.local:32644/remote-config-operator:latest + +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 + +## 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} + +## format: format source code +format: + @go fmt ./... + +.PHONY: help +## help: Print help message +help: Makefile + @echo + @echo " Requires Operator SDK v0.11.0+, go1.13.1+" + @echo + @echo " Choose a command run in "$(PROJECTNAME)":" + @echo + @sed -n 's/^## //p' $< | column -t -s ':' | sed -e 's/^/ /' + @echo \ No newline at end of file -- cgit 1.2.3-korg