git mv Ingress ingress

This commit is contained in:
Prashanth Balasubramanian 2016-02-21 16:13:08 -08:00
parent 34b949c134
commit 3da4e74e5a
2185 changed files with 754743 additions and 0 deletions

16
images/haproxy/Makefile Normal file
View file

@ -0,0 +1,16 @@
all: push
# 0.0.0 shouldn't clobber any released builds
TAG = 0.2
PREFIX = gcr.io/google_containers/haproxy
HAPROXY_IMAGE = haproxy
container:
docker build -t $(PREFIX):$(TAG) .
push: container
gcloud docker push $(PREFIX):$(TAG)
clean:
# remove haproxy images
docker rmi -f $(PREFIX):$(TAG) || true