Add repo index fix 67/39167/1
authorMike Elliott <mike.elliott@amdocs.com>
Tue, 27 Mar 2018 16:34:57 +0000 (12:34 -0400)
committerMike Elliott <mike.elliott@amdocs.com>
Tue, 27 Mar 2018 16:40:38 +0000 (12:40 -0400)
Fixes an issue where subchart build dependencies are not
always resolved when using 'make repo' to start a local
helm repo.

Also added the start of a 'make repo-stop' to shutdown
and cleanup a running local repo.

Change-Id: I33667053637ea4980ad00e424378a156abbe1ad4
Issue-ID: OOM-830
Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
kubernetes/Makefile
kubernetes/common/Makefile

index 7ba5ba9..4962c82 100644 (file)
@@ -47,17 +47,23 @@ lint-%: dep-%
 package-%: lint-%
        @mkdir -p $(PACKAGE_DIR)
        @if [ -f $*/Chart.yaml ]; then helm package -d $(PACKAGE_DIR) $*; fi
+       @helm repo index $(PACKAGE_DIR)
 
 clean:
        @rm -f */requirements.lock
        @rm -f *tgz */charts/*tgz
-       @rm -rf $(PACKAGE_DIR)
+       @rm -rf $(PACKAGE_DIR)/*
 
-# start up a local helm repo to serve up
+# start up a local helm repo to serve up helm chart packages
 repo:
        @mkdir -p $(PACKAGE_DIR)
        @helm serve --repo-path $(PACKAGE_DIR) &
        @helm repo index $(PACKAGE_DIR)
        @helm repo add local http://127.0.0.1:8879
+
+# stop local helm repo
+repo-stop:
+       @pkill helm
+       @helm repo remove local
 %:
        @:
index a78cc88..d634a8c 100644 (file)
@@ -41,6 +41,7 @@ lint-%: dep-%
 package-%: lint-%
        @mkdir -p $(PACKAGE_DIR)
        @if [ -f $*/Chart.yaml ]; then helm package -d $(PACKAGE_DIR) $*; fi
+       @helm repo index $(PACKAGE_DIR)
 
 clean:
        @rm -f */requirements.lock