helm-charts/Makefile
2023-06-26 01:08:31 +10:00

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