Skip to content

Commit

Permalink
Ensure contib prom docker tags match the installed version
Browse files Browse the repository at this point in the history
**What**
- For each prometheus and alert manager contrib makefile, ensure that
the docker tag matches the version installed in the dockerfile.  This
will ensure that no one pushes mistmatched versions

Signed-off-by: Lucas Roesler <roesler.lucas@gmail.com>
  • Loading branch information
LucasRoesler authored and alexellis committed Apr 27, 2019
1 parent 8d8a59b commit fb101fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions contrib/alertmanager-armhf/0.16.1/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ all: ci-armhf-build ci-armhf-push

.PHONY: ci-armhf-build
ci-armhf-build:
docker build -t functions/alertmanager:0.15.0-armhf .
docker build -t functions/alertmanager:0.16.1-armhf .

.PHONY: ci-armhf-push
ci-armhf-push:
docker push functions/alertmanager:0.15.0-armhf
docker push functions/alertmanager:0.16.1-armhf
2 changes: 1 addition & 1 deletion contrib/prometheus-armhf/2.2/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
build:
docker build -t alexellis2/prometheus:2.3.1-armhf .
docker build -t alexellis2/prometheus:2.2.0-armhf .

4 changes: 2 additions & 2 deletions contrib/prometheus-armhf/2.7.1/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ all: ci-armhf-build ci-armhf-push

.PHONY: ci-armhf-build
ci-armhf-build:
docker build -t functions/prometheus:2.7.0-armhf .
docker build -t functions/prometheus:2.7.1-armhf .

.PHONY: ci-armhf-push
ci-armhf-push:
docker push functions/prometheus:2.7.0-armhf
docker push functions/prometheus:2.7.1-armhf

0 comments on commit fb101fc

Please sign in to comment.