VOL-1759 ONU stays in ACTIVATING state

- Since the adapter registers itself to the core as brcm_openomci_onu
the name parameter should be set as the same since it is used as
the kafka listenning topic. Otherwise it subscribes to openonu
topic and can not receive any message from core.
- fixed the file name of the template

Change-Id: I344dc6c25bd5255ab5910de9bb3ab3b7289f6305
diff --git a/voltha-adapter-openonu/templates/adapters-openonu.yaml b/voltha-adapter-openonu/templates/adapters-openonu.yaml
new file mode 100644
index 0000000..4ccd9c5
--- /dev/null
+++ b/voltha-adapter-openonu/templates/adapters-openonu.yaml
@@ -0,0 +1,50 @@
+# Copyright 2019-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: apps/v1
+kind: Deployment
+metadata:
+  name: adapter-open-onu
+  namespace: {{ .Release.Namespace }}
+spec:
+  replicas: {{ .Values.replicas.adapter_open_onu }}
+  selector:
+    matchLabels:
+      app: adapter-open-onu
+  template:
+    metadata:
+      labels:
+        app: adapter-open-onu
+        app.kubernetes.io/name: "adapter-open-onu"
+        app.kubernetes.io/version: {{ quote .Chart.AppVersion }}
+        app.kubernetes.io/component: "adapter"
+        app.kubernetes.io/part-of: "voltha"
+        app.kubernetes.io/managed-by: {{ quote .Release.Service }}
+        helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
+      annotations:
+        cni: "calico"
+    spec:
+      containers:
+        - name: adapter-open-onu
+          image: {{ tpl .Values.images.adapter_open_onu.registry . }}{{ tpl .Values.images.adapter_open_onu.repository . }}:{{ tpl ( tpl .Values.images.adapter_open_onu.tag . ) . }}
+          imagePullPolicy: {{ tpl .Values.images.adapter_open_onu.pullPolicy . }}
+          args:
+            - "/voltha/adapters/brcm_openomci_onu/main.py"
+            - "--verbose"
+            - "--kafka_adapter={{ .Values.services.kafka.adapter.service }}:{{ .Values.services.kafka.adapter.port }}"
+            - "--kafka_cluster={{ .Values.services.kafka.cluster.service }}:{{ .Values.services.kafka.cluster.port }}"
+            - "--core_topic=rwcore"
+            - "--name=brcm_openomci_onu"
+            - "--backend=etcd"
+            - "--etcd={{ .Values.services.etcd.service }}:{{ .Values.services.etcd.port }}"