added linkerd ingress operator
This commit is contained in:
parent
addd3ea953
commit
fe1523102d
6 changed files with 128 additions and 0 deletions
13
testapp/linkerd-ingress-operator/Makefile
Normal file
13
testapp/linkerd-ingress-operator/Makefile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue