28c836f5074bbe5b99d6256d3f414440e211e208
[it/dep.git] / ric-platform / 50-RIC-Platform / helm / rsm / templates / deployment.yaml
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
3 #                                                                              #
4 #   Licensed under the Apache License, Version 2.0 (the "License");            #
5 #   you may not use this file except in compliance with the License.           #
6 #   You may obtain a copy of the License at                                    #
7 #                                                                              #
8 #       http://www.apache.org/licenses/LICENSE-2.0                             #
9 #                                                                              #
10 #   Unless required by applicable law or agreed to in writing, software        #
11 #   distributed under the License is distributed on an "AS IS" BASIS,          #
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
13 #   See the License for the specific language governing permissions and        #
14 #   limitations under the License.                                             #
15 ################################################################################
16
17 apiVersion: apps/v1
18 kind: Deployment
19 metadata:
20   name: {{ include "common.deploymentname.rsm" .}}
21   namespace: {{ include "common.namespace.platform" . }}
22   labels:
23     app: {{ include "common.namespace.platform" . }}-{{ include "common.name.rsm" . }}
24     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25     release: {{ .Release.Name }}
26     heritage: {{ .Release.Service }}
27 spec:
28   replicas: {{ .Values.rsm.replicaCount }}
29   selector:
30     matchLabels:
31       app: {{ include "common.namespace.platform" . }}-{{ include "common.name.rsm" . }}
32       release: {{ .Release.Name }}
33   template:
34     metadata:
35       {{- if .Values.rsm.annotations }}
36       annotations:
37         {{- .Values.rsm.annotations | nindent 8 -}}
38       {{ end }}
39       labels:
40         app: {{ include "common.namespace.platform" . }}-{{ include "common.name.rsm" . }}
41         release: {{ .Release.Name }}
42     spec:
43       initContainers:
44       - name: redis-init
45         image: "redis"
46         imagePullPolicy: IfNotPresent
47         command: ['sh', '-c', 'redis-cli -h service-ricplt-dbaas-tcp -p 6379 set "{rsm},CFG:GENERAL:v1.0.0"  "{\"enableResourceStatus\":true,\"partialSuccessAllowed\":true,\"prbPeriodic\":true,\"tnlLoadIndPeriodic\":true,\"wwLoadIndPeriodic\":true,\"absStatusPeriodic\":true,\"rsrpMeasurementPeriodic\":true,\"csiPeriodic\":true,\"periodicityMs\":1,\"periodicityRsrpMeasurementMs\":3,\"periodicityCsiMs\":4}" nx']
48
49       hostname: {{ include "common.name.rsm" . }} 
50       imagePullSecrets:
51         - name: {{ include "common.repositoryCred" . }}
52       containers:
53         - name: {{ include "common.containername.rsm" . }}
54           image: {{ include "common.repository" . }}/{{ .Values.rsm.image.name }}:{{ .Values.rsm.image.tag }}
55           imagePullPolicy: {{ include "common.pullPolicy" . }}
56           volumeMounts:
57           - mountPath: /opt/RSM/router.txt
58             name: local-router-file
59             subPath: router.txt
60           - mountPath: /opt/RSM/resources/configuration.yaml
61             name: local-configuration-file
62             subPath: configuration.yaml
63           envFrom:
64             - configMapRef:
65                 name: {{ include "common.configmapname.rsm" . }}-env
66           ports:
67             - name: "http"
68               containerPort: {{ include "common.serviceport.rsm.http" . }}
69             - name: "rmrroute"
70               containerPort: {{ include "common.serviceport.rsm.rmr.route" . }}
71             - name: "rmrdata"
72               containerPort: {{ include "common.serviceport.rsm.rmr.data" . }}
73           stdin: true
74           tty: true
75           securityContext:
76             privileged: {{ .Values.rsm.privilegedmode}}
77       volumes:
78         - name: local-router-file
79           configMap:
80             name: {{ include "common.configmapname.rsm" . }}-router-configmap
81         - name: local-configuration-file
82           configMap:
83             name: {{ include "common.configmapname.rsm" . }}