2018-06-13 09:34:28 +02:00
|
|
|
default: build
|
|
|
|
|
|
|
|
|
|
SHELL:=/bin/bash -eux
|
2020-03-20 16:19:13 +01:00
|
|
|
export VERSION := 7.x
|
2018-06-20 07:46:13 +02:00
|
|
|
PATTERN := xpack-ubuntu-1604
|
2018-06-13 09:34:28 +02:00
|
|
|
|
2019-03-15 21:39:24 +01:00
|
|
|
.PHONY: converge verify test login destroy list
|
2018-06-13 09:34:28 +02:00
|
|
|
|
|
|
|
|
setup:
|
|
|
|
|
bundle install
|
|
|
|
|
docker ps
|
|
|
|
|
|
|
|
|
|
converge:
|
|
|
|
|
bundle exec kitchen converge $(PATTERN)
|
|
|
|
|
|
|
|
|
|
verify:
|
|
|
|
|
bundle exec kitchen verify $(PATTERN)
|
|
|
|
|
|
|
|
|
|
test:
|
|
|
|
|
bundle exec kitchen test $(PATTERN) --destroy=always
|
|
|
|
|
|
|
|
|
|
login:
|
|
|
|
|
bundle exec kitchen login $(PATTERN)
|
|
|
|
|
|
|
|
|
|
destroy:
|
|
|
|
|
bundle exec kitchen destroy $(PATTERN)
|
|
|
|
|
|
|
|
|
|
destroy-all:
|
|
|
|
|
bundle exec kitchen destroy
|
|
|
|
|
|
|
|
|
|
list:
|
|
|
|
|
bundle exec kitchen list
|