summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Elliott <mike.elliott@amdocs.com>2018-11-26 16:41:54 -0500
committerMike Elliott <mike.elliott@amdocs.com>2018-11-26 16:46:20 -0500
commit2034ea7a185f91a631991f436963cc08ad3f4315 (patch)
treefaaeaff9ba1e5d678aa1e5955165ff440d926158
parent7cf46293cb660c9f025c577dacd318777b4f6475 (diff)
Add helm plugins to public helm repo
Needed to document the ability to add helm plugins via remote public helm repo. Change-Id: Iae1a67c2e0e2c7d79629a05e395975a51ed0d896 Issue-ID: OOM-1497 Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
-rw-r--r--kubernetes/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/kubernetes/Makefile b/kubernetes/Makefile
index 7b19e6e773..fa63bd8942 100644
--- a/kubernetes/Makefile
+++ b/kubernetes/Makefile
@@ -25,7 +25,7 @@ HELM_CHARTS := $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) $(PA
.PHONY: $(EXCLUDES) $(HELM_CHARTS)
-all: $(COMMON_CHARTS_DIR) $(HELM_CHARTS)
+all: $(COMMON_CHARTS_DIR) $(HELM_CHARTS) plugins
$(COMMON_CHARTS):
@echo "\n[$@]"
@@ -54,6 +54,10 @@ clean:
@find . -type f -name '*.tgz' -delete
@rm -rf $(PACKAGE_DIR)/*
+# publish helm plugins via distrubtion directory
+plugins:
+ @cp -R helm $(PACKAGE_DIR)/
+
# start up a local helm repo to serve up helm chart packages
repo:
@mkdir -p $(PACKAGE_DIR)