Extend K8S and RIC installation instructions
[it/dep.git] / ric-platform / 50-RIC-Platform / helm / e2term / templates / deployment.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
18 apiVersion: apps/v1
19 kind: Deployment
20 metadata:
21   name: {{ include "common.deploymentname.e2term" . }}
22   namespace: {{ include "common.namespace.platform" . }}
23   labels:
24     app: {{ include "common.namespace.platform" . }}-{{ include "common.name.e2term" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ .Release.Name }}
27     heritage: {{ .Release.Service }}
28 spec:
29   replicas: {{ .Values.e2term.replicaCount }}
30   selector:
31     matchLabels:
32       app: {{ include "common.namespace.platform" . }}-{{ include "common.name.e2term" . }}
33       release: {{ .Release.Name }}
34   template:
35     metadata:
36       {{- if .Values.e2term.annotations }}
37       annotations:
38         {{- .Values.e2term.annotations | nindent 8 -}}
39       {{ end }}
40       labels:
41         app: {{ include "common.namespace.platform" . }}-{{ include "common.name.e2term" . }}
42         release: {{ .Release.Name }}
43     spec:
44       hostname: {{ include "common.name.e2term" . }}
45       hostNetwork: {{ .Values.e2term.hostnetworkmode }}
46       dnsPolicy: ClusterFirstWithHostNet
47       imagePullSecrets:
48         - name: {{ include "common.repositoryCred" . }}
49       {{- with .Values.e2term.nodeselector }}
50       nodeSelector: {{ toYaml . | trim | nindent 8 -}}
51       {{- end }}
52       containers:
53         - name: {{ include "common.containername.e2term" . }}
54           image: {{ include "common.repository" . }}/{{ .Values.e2term.image.name }}:{{ .Values.e2term.image.tag }}
55           imagePullPolicy: {{ include "common.pullPolicy" . }}
56           volumeMounts:
57           - mountPath: /opt/e2/router.txt
58             name: local-router-file
59             subPath: router.txt
60           - mountPath: /tmp/rmr_verbose
61             name: local-router-file
62             subPath: rmr_verbose
63 {{ if .Values.e2term.pizpub.enabled }}
64           - mountPath: "{{ .Values.e2term.env.messagecollectorfile }}"
65             name: vol-shared
66             readOnly: false
67             subPath: "{{ .Values.e2term.pizpub.scanDirectory }}"
68 {{ else }}
69           - mountPath: "{{ .Values.e2term.env.messagecollectorfile }}"
70             name: vol-shared
71             readOnly: false
72 {{ end }}
73           envFrom:
74             - configMapRef:
75                 name: {{ include "common.configmapname.e2term" . }}-env
76           ports:
77             - name: "rmrroute"
78               containerPort: {{ include "common.serviceport.e2term.rmr.route" . }}
79             - name: "rmrdata"
80               containerPort: {{ include "common.serviceport.e2term.rmr.data" . }}
81           stdin: true
82           tty: true
83           securityContext:
84             privileged: {{ .Values.e2term.privilegedmode }}
85
86 {{ if .Values.e2term.pizpub.enabled }}
87         - name: {{ include "common.containername.e2term" . }}-pizpub
88           image: {{ include "common.repository" . }}/{{ .Values.e2term.pizpub.imageName }}:{{ .Values.e2term.pizpub.imageVersion }}
89           imagePullPolicy: {{ include "common.pullPolicy" . }}
90           volumeMounts:
91           - mountPath: /etc/localtime
92             name: localtime
93             readOnly: true
94           - mountPath: "{{ .Values.e2term.pizpub.dataRootDir }}"
95             name: vol-shared
96             readOnly: false
97           - name: pizpub-config
98             mountPath: /opt/app/config/conf/
99           lifecycle:
100             postStart:
101               exec:
102                 command: ["/bin/sh", "/opt/app/config/conf/cleaner.sh", "{{ .Values.e2term.pizpub.dataRootDir }}/{{ .Values.e2term.pizpub.processedDirectory }}", "3"]
103 {{ end }}
104       volumes:
105         - name: local-router-file
106           configMap:
107             name: {{ include "common.configmapname.e2term" . }}-router-configmap
108 {{ if .Values.e2term.pizpub.enabled }}
109         - name: localtime
110           hostPath:
111             path: /etc/localtime
112         - name: pizpub-config
113           configMap:
114             name: {{ include "common.configmapname.e2term" . }}-pizpub
115 {{ end }}
116         - name: vol-shared
117           persistentVolumeClaim:
118             claimName: {{ include "common.pvcname.e2term" . }}
119