2017-02-20 10:11:09 -05:00
|
|
|
# Copyright 2017 The Openstack-Helm Authors.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2017-05-04 23:04:01 -05:00
|
|
|
HELM = helm
|
|
|
|
TASK = build
|
2016-11-17 12:40:28 -08:00
|
|
|
|
2017-05-04 23:04:01 -05:00
|
|
|
CHARTS = helm-toolkit bootstrap ceph mariadb etcd rabbitmq memcached
|
|
|
|
CHARTS += keystone glance cinder horizon neutron nova heat
|
|
|
|
CHARTS += barbican mistral senlin magnum ingress
|
2016-11-17 12:40:28 -08:00
|
|
|
|
2017-05-04 23:04:01 -05:00
|
|
|
all: $(CHARTS)
|
2016-11-23 13:26:08 -08:00
|
|
|
|
2017-05-04 23:04:01 -05:00
|
|
|
$(CHARTS):
|
|
|
|
@make $(TASK)-$@
|
2016-11-25 16:27:18 -08:00
|
|
|
|
2017-05-04 23:04:01 -05:00
|
|
|
init-%:
|
|
|
|
@echo
|
|
|
|
@echo "===== Initializing $*"
|
|
|
|
if [ -f $*/Makefile ]; then make -C $*; fi
|
|
|
|
if [ -f $*/requirements.yaml ]; then helm dep up $*; fi
|
2017-04-20 21:53:51 -05:00
|
|
|
|
2017-05-04 23:04:01 -05:00
|
|
|
lint-%: init-%
|
|
|
|
$(HELM) lint $*
|
2016-11-25 16:27:18 -08:00
|
|
|
|
2017-05-04 23:04:01 -05:00
|
|
|
build-%: lint-%
|
|
|
|
$(HELM) package $*
|
2017-04-24 18:03:35 -05:00
|
|
|
|
2016-12-23 15:31:10 -05:00
|
|
|
clean:
|
2017-05-04 23:04:01 -05:00
|
|
|
@echo "Removed all .b64, _partials.tpl, and _globals.tpl files"
|
2017-02-15 00:52:38 +00:00
|
|
|
$(shell rm -rf helm-toolkit/secrets/*.b64)
|
2016-12-27 20:55:01 -05:00
|
|
|
$(shell rm -rf */templates/_partials.tpl)
|
|
|
|
$(shell rm -rf */templates/_globals.tpl)
|
2017-05-01 22:44:22 -05:00
|
|
|
|
2017-05-04 23:04:01 -05:00
|
|
|
.PHONY: $(CHARTS)
|