- move scripts to assets/scripts (and updated build) - put most logic into HaproxyConfigGenerator - created DockerLabelHandler for all label handling from previous code - added unit tests and fixtures to cover HaproxyConfigGenerator and DockerLabelHandler - added a Makefile with build (for docker build) and test targets
7 lines
120 B
Makefile
7 lines
120 B
Makefile
.PHONY: build
|
|
build:
|
|
docker build -t byjg/easy-haproxy -t byjg/easy-haproxy:local .
|
|
|
|
.PHONY: test
|
|
test:
|
|
pytest tests/
|