Fix tiller not being able to talk to kubeapi server issue. Fix appmgr not using xappt...
[it/dep.git] / ric-platform / 55-Ext-Services / helm / extsvcplt / templates / services-helm.yaml
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
3 #   Copyright (c) 2019 Nokia.                                                  #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17 {{ $platformNameSpace := include "common.namespace.platform" . }}
18 {{ $xAppNameSpace := include "common.namespace.xapp" . }}
19 {{ $nameSpaceList := list $platformNameSpace $xAppNameSpace }}
20 {{- range $nameSpaceList }}
21
22 ---
23 kind: "Service"
24 apiVersion: "v1"
25 metadata:
26   name: {{ include "common.ingressurl.helm" $ }}
27   namespace: {{ . }}
28 spec:
29   ports:
30     - name: {{ include "common.ingressurl.helm" $ }}-http-ingress-port
31       protocol: "TCP"
32       port: 80
33     - name: {{ include "common.ingressurl.helm" $ }}-https-ingress-port
34       protocol: "TCP"
35       port: 443
36 ---
37 kind: "Endpoints"
38 apiVersion: "v1"
39 metadata:
40   # match with the selector-less service
41   name: {{ include "common.ingressurl.helm" $ }}
42   namespace: {{ . }}
43 subsets: 
44   - addresses:
45       - ip: "{{ $.Values.extsvcplt.auxip }}"
46     ports:
47       - port: {{ include "common.ingresshttpport" $ }}
48         name: {{ include "common.ingressurl.helm" $ }}-http-ingress-port
49       - port: {{ include "common.ingresshttpsport" $ }}
50         name: {{ include "common.ingressurl.helm" $ }}-https-ingress-port
51
52 {{- end -}}