bd742a9a03d34a194cc4bb864214752b4bd39340
[it/dep.git] / smo-install / oran_oom / nonrtricgateway / templates / deployment.yaml
1 ################################################################################
2 #   Copyright (c) 2021 Nordix Foundation.                                      #
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 kind: Deployment
18 apiVersion: apps/v1
19 metadata:
20   name: {{ include "common.name.nonrtricgateway" . }}
21   namespace: {{ include "common.namespace.nonrtric" . }}
22   generation: 1
23   labels:
24     app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.nonrtricgateway" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ .Release.Name }}
27     heritage: {{ .Release.Service }}
28   annotations:
29     deployment.kubernetes.io/revision: '1'
30 spec:
31   replicas: 1
32   selector:
33     matchLabels:
34       app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.nonrtricgateway" . }}
35       release: {{ .Release.Name }}
36   template:
37     metadata:
38       labels:
39         app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.nonrtricgateway" . }}
40         release: {{ .Release.Name }}
41     spec:
42       hostname: {{ include "common.name.nonrtricgateway" . }}
43       containers:
44       - name: {{ include "common.container.nonrtricgateway" . }}
45         image: {{ .Values.nonrtricgateway.image.registry }}/{{ .Values.nonrtricgateway.image.name }}:{{ .Values.nonrtricgateway.image.tag }}
46         imagePullPolicy: {{ .Values.nonrtricgateway.imagePullPolicy }}
47         ports:
48         - containerPort: {{ .Values.nonrtricgateway.service.targetPort1 }}
49           protocol: TCP
50         readinessProbe:
51           tcpSocket:
52             port: {{ .Values.nonrtricgateway.service.targetPort1 }}
53           initialDelaySeconds: {{ .Values.nonrtricgateway.liveness.initialDelaySeconds }}
54           periodSeconds: {{ .Values.nonrtricgateway.liveness.periodSeconds }}
55         livenessProbe:
56           tcpSocket:
57             port: {{ .Values.nonrtricgateway.service.targetPort1 }}
58           initialDelaySeconds: {{ .Values.nonrtricgateway.liveness.initialDelaySeconds }}
59           periodSeconds: {{ .Values.nonrtricgateway.liveness.periodSeconds }}
60         volumeMounts:
61         - name: {{ include "common.name.nonrtricgateway" . }}-config
62           mountPath: /opt/app/nonrtric-gateway/config
63       volumes:
64         - name: {{ include "common.name.nonrtricgateway" . }}-config
65           configMap:
66             name: {{ include "common.name.nonrtricgateway" . }}-configmap