[GLOBAL] Migrate to helm v3
[oom.git] / kubernetes / portal / components / Makefile
index d62cb0b..1688db2 100644 (file)
@@ -34,7 +34,7 @@ make-%:
        @if [ -f $*/Makefile ]; then make -C $*; fi
 
 dep-%: make-%
-       @if [ -f $*/requirements.yaml ]; then $(HELM_BIN) dep up $*; fi
+       @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) dep up $*; fi
 
 lint-%: dep-%
        @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) lint $*; fi
@@ -49,7 +49,7 @@ endif
        @$(HELM_BIN) repo index $(PACKAGE_DIR)
 
 clean:
-       @rm -f */requirements.lock
+       @rm -f */Chart.lock
        @rm -f *tgz */charts/*tgz
        @rm -rf $(PACKAGE_DIR)
 %: