add services for the progran ports

Change-Id: I8e938216e3ffc875a21c096c352093c8cd1b3e6f
diff --git a/onos-progran/templates/onos-progran-port4010-service.yaml b/onos-progran/templates/onos-progran-port4010-service.yaml
new file mode 100644
index 0000000..6547b7c
--- /dev/null
+++ b/onos-progran/templates/onos-progran-port4010-service.yaml
@@ -0,0 +1,33 @@
+# 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: v1
+kind: Service
+metadata:
+  name: {{ template "onos.fullname" . }}-progran-port4010
+  namespace: {{ .Values.namespace }}
+  labels:
+    app: {{ template "onos.name" . }}
+    chart: {{ template "onos.chart" . }}
+    release: {{ .Release.Name }}
+    heritage: {{ .Release.Service }}
+spec:
+  type: {{ .Values.services.progranPort4010ServiceType }}
+  ports:
+  - name: port4010
+{{ toYaml .Values.services.port4010 | indent 4 }}
+  selector:
+    app: {{ template "onos.name" . }}
+    release: {{ .Release.Name }}
+