fabric-umbrella: initial version

Change-Id: I3347bd7c49c6f2a53f074fab05cfb1f2164c2fab
diff --git a/Makefile b/Makefile
index 5703560..e33d270 100644
--- a/Makefile
+++ b/Makefile
@@ -27,8 +27,11 @@
 roc-test: deps # @HELP run the integration tests
 	./build/bin/run-roc-test
 
+fabric-test: deps-fabric # @HELP run the integration tests
+	./build/bin/run-fabric-test
+
 clean: # @HELP clean up temporary files for ROC umbrella.
-	rm -rf aether-roc-umbrella/charts aether-roc-umbrella/Chart.lock
+	rm -rf aether-roc-umbrella/charts aether-roc-umbrella/Chart.lock chronos-umbrella/charts chronos-umbrella/Chart.lock fabric-umbrella/charts fabric-umbrella/Chart.lock
 
 deps: # @HELP build dependencies for ROC Umbrella local charts.
 deps: clean
@@ -39,6 +42,11 @@
 	rm -rf chronos-umbrella/Chart.lock chronos-umbrella/charts
 	helm dep build chronos-umbrella
 
+deps-fabric: # @HELP build dependencies for Fabric Umbrella local charts.
+deps-fabric: clean
+	rm -rf fabric-umbrella/Chart.lock fabric-umbrella/charts
+	helm dep build fabric-umbrella
+
 help:
 	@grep -E '^.*: *# *@HELP' $(MAKEFILE_LIST) \
     | sort \