myos/openstack/openstack.mk

10 lines
459 B
Makefile
Raw Normal View History

2021-06-06 16:29:54 +02:00
# target openstack: Call openstack ARGS
2021-02-09 17:05:00 +01:00
.PHONY: openstack
openstack: docker-build-openstack
$(call openstack,$(ARGS))
2021-06-06 16:29:54 +02:00
# target openstack-image-create: Call openstack image create PACKER_ISO_NAME with file PACKER_ISO_FILE
2021-02-09 17:05:00 +01:00
.PHONY: openstack-image-create
openstack-image-create: $(PACKER_ISO_FILE) docker-build-openstack
$(call openstack,$(OPENSTACK_ARGS) image create --disk-format raw --container-format bare --file $(PACKER_ISO_FILE) "$(PACKER_ISO_NAME)")