Merge "[OOM-CERT-SERVICE] Add change-log"
[oom/platform/cert-service.git] / certServiceK8sExternalProvider / Makefile
1 # ============LICENSE_START=======================================================
2 # oom-certservice-k8s-external-provider
3 # ================================================================================
4 # Copyright (C) 2020 Nokia. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18 #
19
20 ip_addr=$(shell hostname -I | awk '{print $$1}')
21 cmpv2_issuer_pod_id=$(shell kubectl -n onap get po | grep cmpv2issuer | awk '{print $$1}')
22
23 build:
24         CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -v -o bin/oom-certservice-cmpv2issuer
25
26 test: build
27         go test ./...
28
29 build-docker-image:
30         docker build -t onap/oom-certservice-cmpv2issuer:latest .
31
32 run-docker-image:
33         docker run -it onap/oom-certservice-cmpv2issuer:latest
34
35 dev-copy-certs:
36         mkdir -p dev/certs
37         cp ../certs/cmpv2Issuer-cert.pem dev/certs/cmpv2Issuer-cert.pem
38         cp ../certs/cmpv2Issuer-key.pem  dev/certs/cmpv2Issuer-key.pem
39         cp ../certs/cacert.pem           dev/certs/cacert.pem
40
41 dev-build-docker-image: build dev-copy-certs
42         docker build -t onap-dev/cmpv2issuer:latest . -f dev/Dockerfile.dev
43
44 dev-run-docker-image:
45         docker run -it onap-dev/cmpv2issuer:latest
46
47 dev-update-docker-hosts-file:
48         kubectl exec -it -n onap ${cmpv2_issuer_pod_id} -c kube-rbac-proxy -- sh -c "echo '$(ip_addr) oom-cert-service' >> /etc/hosts"