[VOL-3831] Exposing the profiler for the openonu adapter go

Change-Id: I0d5a1910a08a468eb21487f2eac578ccb74e4f57
diff --git a/voltha-adapter-openonu/templates/openonu-go-profile-svc.yaml b/voltha-adapter-openonu/templates/openonu-go-profile-svc.yaml
new file mode 100644
index 0000000..ae8479f
--- /dev/null
+++ b/voltha-adapter-openonu/templates/openonu-go-profile-svc.yaml
@@ -0,0 +1,31 @@
+# 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.
+{{- if .Values.profiler.enabled }}
+{{- $log_level := tpl .Values.adapter_open_onu.log_level . | upper }}
+---
+apiVersion: v1
+kind: Service
+metadata:
+  name: "{{ template "fullname" . }}-profiler"
+  namespace: {{ .Release.Namespace }}
+spec:
+  clusterIP: None
+  ports:
+    - name: openonu-profiler
+      port: 6060
+      targetPort: 6060
+  selector:
+    app: adapter-open-onu
+    release: {{ .Release.Name }}
+{{- end }}