added istio controller for cert-manager

This commit is contained in:
ston1th 2019-08-10 21:51:09 +02:00
commit b23161a08d
10 changed files with 373 additions and 0 deletions

View file

@ -0,0 +1,13 @@
CC=docker
APP=certman-istio-controller
TAG=127.0.0.1:5000/cert/$(APP):$(VERSION)
all: build push
build:
$(CC) build --build-arg VERSION=$(VERSION) -t $(TAG) .
push:
$(CC) push $(TAG)
.PHONY: build push