XOS Core complete helm initial submission

Change-Id: I2fc7ae7d06f98c0c7578df7b21a21163b13dfca1
diff --git a/xos-core/templates/core-service.yaml b/xos-core/templates/core-service.yaml
new file mode 100644
index 0000000..7e56013
--- /dev/null
+++ b/xos-core/templates/core-service.yaml
@@ -0,0 +1,19 @@
+apiVersion: v1
+kind: Service
+metadata:
+  name: "xos-core"
+  labels:
+    {{- include "xos-core.release_labels" . | indent 4 }}
+spec:
+  type: NodePort
+  ports:
+  - port: 50051
+    name: secure 
+    targetPort: 50051 
+    protocol: TCP
+  - port: 50055
+    name: insecure 
+    targetPort: 50055 
+    protocol: TCP
+  selector:
+    app: "xos-core"