helm-charts/Makefile

18 lines
450 B
Makefile
Raw Normal View History

2023-06-25 15:08:31 +00:00
.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