4eb0110d3c619559177e645ecbef4f1c627fdcf1
[it/dep.git] / ric-platform / 50-RIC-Platform / helm / a1mediator / 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 ---
19 apiVersion: apps/v1
20 kind: Deployment
21 metadata:
22   name: {{ include "common.deploymentname.a1mediator" . }}
23   namespace: {{ include "common.namespace" . }}
24   labels:
25     app: {{ include "common.namespace" . }}-{{ include "common.name" . }}
26     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
27     release: {{ .Release.Name }}
28     heritage: {{ .Release.Service }}
29 spec:
30   replicas: {{ .Values.a1mediator.replicaCount }}
31   selector:
32     matchLabels:
33       app: {{ include "common.namespace" . }}-{{ include "common.name" . }}
34       release: {{ .Release.Name }}
35   template:
36     metadata:
37       labels:
38         app: {{ include "common.namespace" . }}-{{ include "common.name" . }}
39         release: {{ .Release.Name }}
40     spec:
41       hostname: {{ .Chart.Name }}
42       imagePullSecrets:
43         - name: {{ include "common.repositoryCred" . }}
44       containers:
45         - name: {{ include "common.namespace" . }}-{{ include "common.name" . }}
46           volumeMounts:
47           - name: a1conf
48             mountPath: /opt/ricmanifest.json
49             subPath: ricmanifest.json
50           - name: a1conf
51             mountPath: /opt/rmr_string_int_mapping.txt
52             subPath: rmr_string_int_mapping.txt
53           - name: a1conf
54             mountPath: /opt/route/local.rt
55             subPath: local.rt
56           env:
57           - name: PYTHONUNBUFFERED
58             value: "0"
59           - name: RMR_RCV_RETRY_INTERVAL
60             value: "{{ .Values.a1mediator.rmr_timeout_config.rcv_retry_interval_ms }}"
61           - name: RMR_RETRY_TIMES
62             value: "{{ .Values.a1mediator.rmr_timeout_config.rcv_retry_times }}"
63           image: {{ include "common.repository" . }}/{{ .Values.a1mediator.image.name }}:{{ .Values.a1mediator.image.tag }}
64           imagePullPolicy: {{ include "common.pullPolicy" . }}
65           ports:
66             - name: http
67               containerPort: {{ .Values.a1mediator.service.http.containerPort }}
68               protocol: TCP
69             - name: rmr
70               containerPort: {{ .Values.a1mediator.service.rmr.containerPort }}
71               protocol: TCP
72           livenessProbe:
73             httpGet:
74               path: /ui
75               port: http
76           readinessProbe:
77             httpGet:
78               path: /ui
79               port: http
80       volumes:
81         - name: "a1conf"
82           configMap:
83             name:  {{ include "common.configmapname.a1mediator" . }}-a1conf