18 lines
290 B
Makefile
18 lines
290 B
Makefile
.PHONY: imageHaproxy
|
|
|
|
# linux/arm/v7
|
|
# linux/arm/v6
|
|
# linux/arm64
|
|
# linux/amd64
|
|
PLATFORM=linux/arm64,linux/amd64
|
|
|
|
## build
|
|
|
|
imageHaproxy:
|
|
$(shell docker-multi-arch-builder build -n haproxy-k8s --platforms $(PLATFORM))
|
|
|
|
## management
|
|
|
|
status:
|
|
@curl -s $(REGISTRY_IP):5000/v2/_catalog | jq
|