mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-02 11:18:16 +00:00
Bumped docker tag from 1.1 to 1.2 and updated README and RC config to reference updated version.
15 lines
299 B
Makefile
15 lines
299 B
Makefile
.PHONY: elasticsearch_discovery build push all
|
|
|
|
TAG = 1.2
|
|
|
|
build: elasticsearch_discovery
|
|
docker build -t kubernetes/elasticsearch:$(TAG) .
|
|
|
|
push:
|
|
docker push kubernetes/elasticsearch:$(TAG)
|
|
|
|
elasticsearch_discovery:
|
|
go build elasticsearch_discovery.go
|
|
|
|
all: elasticsearch_discovery build push
|