-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
36 lines (27 loc) · 1.09 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Makefile for building, testing, and publishing the ControlPlane Helm Charts.
SHELL = /usr/bin/env bash -o pipefail
.SHELLFLAGS = -ec
.PHONY: all
all: manifests lint ## Run all targets.
.PHONY: generate
generate: ## Update the CustomResourceDefinitions and App version for all charts.
./scripts/flux-operator.sh
.PHONY: manifests
manifests: ## Generate schema and docs for all charts.
./scripts/manifests.sh
.PHONY: lint
lint: ## Run Helm linter against all charts.
./scripts/lint.sh
.PHONY: package
package: ## Package all Helm charts into the dist directory.
mkdir -p dist
helm package ./charts/* -d ./dist/
.PHONY: push
push: ## Push all Helm charts to the Helm repository.
./scripts/push.sh
.PHONY: plugins
plugins: ## Install required Helm plugins.
helm plugin install https://github.com/losisin/helm-values-schema-json.git
.PHONY: help
help: ## Display this help.
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)