[SEBA-616] create helm chart for device-management container

Change-Id: I0f7948af5cc67add82ef3f4c3307c64dab000d99
diff --git a/nem-monitoring/Chart.yaml b/nem-monitoring/Chart.yaml
index 562f8d4..1d508f8 100644
--- a/nem-monitoring/Chart.yaml
+++ b/nem-monitoring/Chart.yaml
@@ -15,4 +15,4 @@
 
 name: nem-monitoring
 description: Time Series Storage and Dashboard for SEBA
-version: 1.0.5
+version: 1.0.6-dev
diff --git a/nem-monitoring/templates/importer-deployment.yaml b/nem-monitoring/templates/importer-deployment.yaml
new file mode 100644
index 0000000..0e7703b
--- /dev/null
+++ b/nem-monitoring/templates/importer-deployment.yaml
@@ -0,0 +1,37 @@
+---
+# Copyright 2017-present Open Networking Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+  name: device-management
+  labels:
+    release: {{ .Release.Name }}
+spec:
+  replicas: {{ .Values.device_management_replicas }}
+  template:
+    metadata:
+      labels:
+        app: device-management
+        release: {{ .Release.Name }}
+    spec:
+      containers:
+        - name: device-management
+          image:  "{{ .Values.global.registry }}{{ .Values.images.device_management.repository }}:{{ tpl .Values.images.device_management.tag . }}"
+          imagePullPolicy: "{{ .Values.images.device_management.pullPolicy }}"
+          ports:
+            - containerPort: 8080
+              port: 8080
+              protocol: TCP
diff --git a/nem-monitoring/values.yaml b/nem-monitoring/values.yaml
index 884fa94..8c93263 100644
--- a/nem-monitoring/values.yaml
+++ b/nem-monitoring/values.yaml
@@ -22,8 +22,14 @@
     tag: '1.2.3'
     pullPolicy: 'Always'
 
+  device_management:
+    repository: 'opencord/device-management'
+    tag: 'master'
+    pullPolicy: 'Always'
+
 nem_voltha_kpi_exporter_nodePort: 31080
 nem_voltha_kpi_exporter_replicas: 2
+device_management_replicas: 1
 
 args:
   voltha_kpi_broker: cord-kafka:9092