Add healthcheck endpoints and scripts

This commit is contained in:
sid palas
2023-02-05 10:16:47 -05:00
parent af4bca05d0
commit 1ea6754c7f
14 changed files with 241 additions and 20 deletions

View File

@ -11,7 +11,7 @@ build-N:
.PHONY: build-all
build-all:
for number in 0 1 2 3 4 5 6 ; do \
for number in 0 1 2 3 4 5 6 7; do \
N=$$number $(MAKE) build-N; \
done
@ -21,6 +21,6 @@ push-N:
.PHONY: push-all
push-all:
for number in 0 1 2 3 4 5 6 ; do \
for number in 0 1 2 3 4 5 6 7; do \
N=$$number $(MAKE) push-N; \
done