c3085d2b87
makefile cleanup
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
.PHONY: ceph bootstrap mariadb keystone memcached rabbitmq common openstack all clean
|
|
|
|
B64_DIRS := common/secrets
|
|
B64_EXCLUDE := $(wildcard common/secrets/*.b64)
|
|
|
|
CHARTS := ceph mariadb rabbitmq GLANCE memcached keystone glance horizon openstack
|
|
COMMON_TPL := common/templates/_globals.tpl
|
|
|
|
all: common ceph bootstrap mariadb rabbitmq memcached keystone glance horizon openstack
|
|
|
|
common: build-common
|
|
|
|
#ceph: nolint-build-ceph
|
|
ceph: build-ceph
|
|
|
|
bootstrap: build-bootstrap
|
|
|
|
mariadb: build-mariadb
|
|
|
|
keystone: build-keystone
|
|
|
|
horizon: build-horizon
|
|
|
|
rabbitmq: build-rabbitmq
|
|
|
|
glance: build-glance
|
|
|
|
memcached: build-memcached
|
|
|
|
openstack: build-openstack
|
|
|
|
clean:
|
|
$(shell rm -rf common/secrets/*.b64)
|
|
$(shell rm -rf */templates/_partials.tpl)
|
|
$(shell rm -rf */templates/_globals.tpl)
|
|
echo "Removed all .b64, _partials.tpl, and _globals.tpl files"
|
|
|
|
build-%:
|
|
if [ -f $*/Makefile ]; then make -C $*; fi
|
|
if [ -f $*/requirements.yaml ]; then helm dep up $*; fi
|
|
helm lint $*
|
|
helm package $*
|
|
|
|
## this is required for some charts which cannot pass a lint, namely
|
|
## those which use .Release.Namespace in a default pipe capacity
|
|
#nolint-build-%:
|
|
# if [ -f $*/Makefile ]; then make -C $*; fi
|
|
# if [ -f $*/requirements.yaml ]; then helm dep up $*; fi
|
|
# helm package $*
|