First helm chart version for o-ru app
[nonrtric.git] / test / usecases / oruclosedlooprecovery / scriptversion / helm / dmaap-mr / templates / deployment.yaml
1 #  Copyright (C) 2021 Nordix Foundation. All rights reserved.
2 #  ========================================================================
3 #  Licensed under the Apache License, Version 2.0 (the "License");
4 #  you may not use this file except in compliance with the License.
5 #  You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #  Unless required by applicable law or agreed to in writing, software
10 #  distributed under the License is distributed on an "AS IS" BASIS,
11 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #  See the License for the specific language governing permissions and
13 #  limitations under the License.
14 #  ============LICENSE_END=================================================
15
16 apiVersion: apps/v1
17 kind: Deployment
18 metadata:
19   name: {{ include "dmaap-mr.fullname" . }}
20   labels:
21     {{- include "dmaap-mr.labels" . | nindent 4 }}
22 spec:
23   replicas: {{ .Values.replicaCount }}
24   selector:
25     matchLabels:
26       {{- include "dmaap-mr.selectorLabels" . | nindent 6 }}
27   template:
28     metadata:
29       {{- with .Values.podAnnotations }}
30       annotations:
31         {{- toYaml . | nindent 8 }}
32       {{- end }}
33       labels:
34         {{- include "dmaap-mr.selectorLabels" . | nindent 8 }}
35     spec:
36       {{- with .Values.imagePullSecrets }}
37       imagePullSecrets:
38         {{- toYaml . | nindent 8 }}
39       {{- end }}
40       securityContext:
41         {{- toYaml .Values.podSecurityContext | nindent 8 }}
42       containers:
43         - name: {{ .Chart.Name }}
44           securityContext:
45             {{- toYaml .Values.securityContext | nindent 12 }}
46           image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
47           imagePullPolicy: {{ .Values.image.pullPolicy }}
48           ports:
49             - name: http
50               containerPort: 3904
51               protocol: TCP
52           livenessProbe:
53             httpGet:
54               path: /
55               port: http
56           readinessProbe:
57             httpGet:
58               path: /
59               port: http
60           resources:
61             {{- toYaml .Values.resources | nindent 12 }}
62       {{- with .Values.nodeSelector }}
63       nodeSelector:
64         {{- toYaml . | nindent 8 }}
65       {{- end }}
66       {{- with .Values.affinity }}
67       affinity:
68         {{- toYaml . | nindent 8 }}
69       {{- end }}
70       {{- with .Values.tolerations }}
71       tolerations:
72         {{- toYaml . | nindent 8 }}
73       {{- end }}