# Copyright © 2017 Amdocs, Bell Canada # # 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 not .Values.disableEsrServer }} apiVersion: v1 kind: Service metadata: labels: app: esr-esrserver name: esr-esrserver namespace: "{{ .Values.nsPrefix }}" annotations: msb.onap.org/service-info: '[ { "serviceName": "aai-esr-server", "version": "v1", "url": "/api/aai-esr-server/v1", "protocol": "REST", "port": "{{.Values.esrserver.port}}", "enable_ssl": true, "visualRange":"1" } ]' spec: ports: - name: esr-esrserver port: {{.Values.esrserver.port}} selector: app: esr-esrserver #{{ end }} #{{ if not .Values.disableEsrGui }} --- apiVersion: v1 kind: Service metadata: labels: app: esr-esrgui name: esr-esrgui namespace: "{{ .Values.nsPrefix }}" annotations: msb.onap.org/service-info: '[ { "serviceName": "aai-esr-gui", "version": "v1", "url": "/esr-gui", "protocol": "UI", "port": "{{.Values.esrgui.port}}", "visualRange":"1" } ]' spec: ports: - name: esr-esrgui port: {{.Values.esrgui.port}} selector: app: esr-esrgui #{{ end }}