Extend K8S and RIC installation instructions
[it/dep.git] / ric-platform / 50-RIC-Platform / helm / submgr / templates / deployment.yaml
1 #
2 #==================================================================================
3 #   Copyright (c) 2019 AT&T Intellectual Property.
4 #   Copyright (c) 2019 Nokia
5 #
6 #   Licensed under the Apache License, Version 2.0 (the "License");
7 #   you may not use this file except in compliance with the License.
8 #   You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #   Unless required by applicable law or agreed to in writing, software
13 #   distributed under the License is distributed on an "AS IS" BASIS,
14 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #   See the License for the specific language governing permissions and
16 #   limitations under the License.
17 #==================================================================================
18 #
19 #
20 #   Abstract: Subscription Manager Kubernetes manifest
21 #   Date:               28 May 2019
22 #
23 apiVersion: apps/v1
24 kind: Deployment
25 metadata:
26   name: {{ include "common.deploymentname.submgr" . }}
27   namespace: {{ include "common.namespace.platform" . }}
28   labels:
29     app: {{ include "common.namespace.platform" . }}-{{ include "common.name.submgr" . }}
30     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
31     release: {{ .Release.Name }}
32     heritage: {{ .Release.Service }}
33 spec:
34   replicas: {{ .Values.submgr.replicaCount }}
35   selector:
36     matchLabels:
37       app: {{ include "common.namespace.platform" . }}-{{ include "common.name.submgr" . }}
38       release: {{ .Release.Name }}
39   template:
40     metadata:
41       {{- if .Values.submgr.annotations }}
42       annotations:
43         {{- .Values.submgr.annotations | nindent 8 -}}
44       {{ end }}
45       labels:
46         app: {{ include "common.namespace.platform" . }}-{{ include "common.name.submgr" . }}
47         release: {{ .Release.Name }}
48     spec:
49       hostname: {{ include "common.name.submgr" . }}
50       imagePullSecrets:
51         - name: {{ include "common.repositoryCred" . }}
52       containers:
53         - name: {{ include "common.containername.submgr" . }}
54           image: {{ include "common.repository" . }}/{{ .Values.submgr.image.name }}:{{ .Values.submgr.image.tag }}
55           imagePullPolicy: {{ include "common.pullPolicy" . }}
56           command: ["/run_submgr.sh"]
57           envFrom:
58             - configMapRef:
59                 name: {{ include "common.configmapname.submgr" . }}-env
60           ports:
61             - name: http
62               containerPort: {{ include "common.serviceport.submgr.http" . }}
63               protocol: TCP
64             - name: rmrroute
65               containerPort: {{ include "common.serviceport.submgr.rmr.route" . }}
66               protocol: TCP
67             - name: rmrdata
68               containerPort: {{ include "common.serviceport.submgr.rmr.data" . }}
69               protocol: TCP
70           volumeMounts:
71             - name: config-volume
72               mountPath: /cfg
73       volumes:
74         - name: config-volume
75           configMap:
76             name: submgrcfg
77             items:
78               - key: submgrcfg
79                 path: submgr-config.yaml
80                 mode: 0644
81