123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- # Copyright 2017 The Rook Authors. All rights reserved.
- #
- # 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.
- # the helm charts to build
- HELM_CHARTS ?= rook-ceph rook-ceph-cluster
- HELM_BASE_URL ?= https://charts.rook.io
- HELM_S3_BUCKET ?= rook.chart
- HELM_CHARTS_DIR ?= $(ROOT_DIR)/deploy/charts
- HELM_OUTPUT_DIR ?= $(OUTPUT_DIR)/charts
- HELM_HOME := $(abspath $(CACHE_DIR)/helm)
- HELM_VERSION := v3.6.2
- HELM := $(TOOLS_HOST_DIR)/helm-$(HELM_VERSION)
- HELM_INDEX := $(HELM_OUTPUT_DIR)/index.yaml
- export HELM_HOME
- $(HELM_OUTPUT_DIR):
- @mkdir -p $@
- $(HELM):
- @echo === installing helm
- @mkdir -p $(TOOLS_HOST_DIR)/tmp
- @curl -sL https://get.helm.sh/helm-$(HELM_VERSION)-$(shell go env GOHOSTOS)-$(GOHOSTARCH).tar.gz | tar -xz -C $(TOOLS_HOST_DIR)/tmp
- @mv $(TOOLS_HOST_DIR)/tmp/$(shell go env GOHOSTOS)-$(GOHOSTARCH)/helm $(HELM)
- @rm -fr $(TOOLS_HOST_DIR)/tmp
- define helm.chart
- $(HELM_OUTPUT_DIR)/$(1)-$(VERSION).tgz: $(HELM) $(HELM_OUTPUT_DIR) $(shell find $(HELM_CHARTS_DIR)/$(1) -type f)
- @echo === helm package $(1)
- @rm -rf $(OUTPUT_DIR)/$(1)
- @cp -aL $(HELM_CHARTS_DIR)/$(1) $(OUTPUT_DIR)
- @$(SED_IN_PLACE) 's|master|$(VERSION)|g' $(OUTPUT_DIR)/$(1)/values.yaml
- @$(HELM) lint $(abspath $(OUTPUT_DIR)/$(1)) --set image.tag=$(VERSION)
- @$(HELM) package --version $(VERSION) --app-version $(VERSION) -d $(HELM_OUTPUT_DIR) $(abspath $(OUTPUT_DIR)/$(1))
- $(HELM_INDEX): $(HELM_OUTPUT_DIR)/$(1)-$(VERSION).tgz
- endef
- $(foreach p,$(HELM_CHARTS),$(eval $(call helm.chart,$(p))))
- $(HELM_INDEX): $(HELM) $(HELM_OUTPUT_DIR)
- @echo === helm index
- @$(HELM) repo index $(HELM_OUTPUT_DIR)
- helm.build: $(HELM_INDEX)
- # ====================================================================================
- # Makefile helper functions for helm-docs: https://github.com/norwoodj/helm-docs
- #
- HELM_DOCS_VERSION := v1.11.0
- HELM_DOCS := $(TOOLS_HOST_DIR)/helm-docs-$(HELM_DOCS_VERSION)
- HELM_DOCS_REPO := github.com/norwoodj/helm-docs/cmd/helm-docs
- $(HELM_DOCS): ## Installs helm-docs
- @echo === installing helm-docs
- @mkdir -p $(TOOLS_HOST_DIR)/tmp
- @GOBIN=$(TOOLS_HOST_DIR)/tmp GO111MODULE=on go install $(HELM_DOCS_REPO)@$(HELM_DOCS_VERSION)
- @mv $(TOOLS_HOST_DIR)/tmp/helm-docs $(HELM_DOCS)
- @rm -fr $(TOOLS_HOST_DIR)/tmp
|