[OOM] Remove POMBA from OOM repository
[oom.git] / kubernetes / pomba / components / pomba-networkdiscovery / templates / service.yaml
diff --git a/kubernetes/pomba/components/pomba-networkdiscovery/templates/service.yaml b/kubernetes/pomba/components/pomba-networkdiscovery/templates/service.yaml
deleted file mode 100644 (file)
index a846fe3..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-{{/*
-# Copyright © 2018 Amdocs\r
-#\r
-# Licensed under the Apache License, Version 2.0 (the "License");\r
-# you may not use this file except in compliance with the License.\r
-# You may obtain a copy of the License at\r
-#\r
-#       http://www.apache.org/licenses/LICENSE-2.0\r
-#\r
-# Unless required by applicable law or agreed to in writing, software\r
-# distributed under the License is distributed on an "AS IS" BASIS,\r
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
-# See the License for the specific language governing permissions and\r
-# limitations under the License.\r
-*/}}
-\r
-apiVersion: v1\r
-kind: Service\r
-metadata:\r
-  name: {{ include "common.servicename" . }}\r
-  namespace: {{ include "common.namespace" . }}\r
-  labels:\r
-    app: {{ include "common.name" . }}\r
-    chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}\r
-    release: {{ include "common.release" . }}\r
-    heritage: {{ .Release.Service }}\r
-spec:\r
-  type: {{ .Values.service.type }}\r
-  ports:\r
-    {{if eq .Values.service.type "NodePort" -}}\r
-    - port: {{ .Values.service.externalPort }}\r
-      targetPort: {{ .Values.service.internalPort }}\r
-      nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}\r
-      name: {{ .Values.service.portName | default "http" }}\r
-    {{- else -}}\r
-    - port: {{ .Values.service.externalPort }}\r
-      targetPort: {{ .Values.service.internalPort }}\r
-      name: {{ .Values.service.portName | default "http" }}\r
-    {{- end}}\r
-  selector:\r
-    app: {{ include "common.name" . }}\r
-    release: {{ include "common.release" . }}\r