forked from coo-ops.space/helm-charts
18 lines
450 B
Makefile
18 lines
450 B
Makefile
|
.DEFAULT_GOAL := all
|
||
|
|
||
|
|
||
|
configure:
|
||
|
@mkdir -p _build/
|
||
|
helm repo add bitnami https://charts.bitnami.com/bitnami
|
||
|
|
||
|
homebox: configure
|
||
|
helm lint charts/stable/homebox/
|
||
|
helm dependency build charts/stable/homebox/
|
||
|
helm package charts/stable/homebox/ -d _build/
|
||
|
|
||
|
index:
|
||
|
curl -L -o _build/index.yaml https://charts.coo-ops.space/index.yaml
|
||
|
helm repo index _build/ --url https://charts.coo-ops.space --merge index.yaml
|
||
|
|
||
|
stable: homebox
|
||
|
all: stable index
|