diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2019-07-31 15:32:28 -0700 |
---|---|---|
committer | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2019-08-28 12:45:14 -0700 |
commit | ab8c95eff5c1228237f758d3ccfc99c751f713f7 (patch) | |
tree | a950ac5356f547434f24c8cc3bf53f3620e84a74 /src/Makefile | |
parent | dcace0784979890bb986fb078348b4b3ceef146c (diff) |
Adding monitor operator to monitor edge resources
Add an operator to monitor resources at the edge location.
The operator listens to pods and services right now and stores
their information in a CustomResource
Issue-ID: MULTICLOUD-675
Change-Id: I801478a77fcd019010ea1b4388d6077f63b89d05
Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 38397c81..94359287 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,11 +1,15 @@ build: + $(MAKE) -C monitor build $(MAKE) -C k8splugin build deploy: + $(MAKE) -C monitor deploy $(MAKE) -C k8splugin deploy all: + $(MAKE) -C monitor all $(MAKE) -C k8splugin all clean: - $(MAKE) -C k8splugin clean
\ No newline at end of file + $(MAKE) -C monitor clean + $(MAKE) -C k8splugin clean |