diff --git a/Makefile b/Makefile index f25e0596..37c91ee1 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,10 @@ CHARTS := $(shell dirname `find . -name Chart.yaml`) .PHONY: deps deps: + helm repo add grafana https://grafana.github.io/helm-charts + helm repo add fluent https://fluent.github.io/helm-charts + helm repo add otel https://open-telemetry.github.io/opentelemetry-helm-charts + helm repo update @for chart in $(CHARTS); do \ - helm dependency update $$chart; \ + helm dependency build --skip-refresh $$chart; \ done