added linkerd ingress operator

This commit is contained in:
ston1th 2019-08-16 13:36:00 +02:00
commit fe1523102d
6 changed files with 128 additions and 0 deletions

View file

@ -0,0 +1,13 @@
CC=docker
APP=linkerd-ingress-operator
TAG=127.0.0.1:5000/linkerd/$(APP):$(VERSION)
all: build push
build:
$(CC) build --build-arg VERSION=$(VERSION) -t $(TAG) .
push:
$(CC) push $(TAG)
.PHONY: build push