First helm chart version for o-ru app
[nonrtric.git] / test / usecases / oruclosedlooprecovery / scriptversion / helm / oru-app / 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 "oru-app.fullname" . }}
20   labels:
21     {{- include "oru-app.labels" . | nindent 4 }}
22 spec:
23   replicas: {{ .Values.replicaCount }}
24   selector:
25     matchLabels:
26       {{- include "oru-app.selectorLabels" . | nindent 6 }}
27   template:
28     metadata:
29       {{- with .Values.podAnnotations }}
30       annotations:
31         {{- toYaml . | nindent 8 }}
32       {{- end }}
33       labels:
34         {{- include "oru-app.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           env:
49           - name: MR-HOST
50             value: http://dmaap-mr
51           - name: MR-PORT
52             value: "3904"
53           - name: SDNR-HOST
54             value: http://sdnr-simulator
55           - name: SDNR-PORT
56             value: "9990"
57           - name: VERBOSE
58             value: "on"
59           ports:
60             - name: http
61               containerPort: 80
62               protocol: TCP
63           resources:
64             {{- toYaml .Values.resources | nindent 12 }}
65       {{- with .Values.nodeSelector }}
66       nodeSelector:
67         {{- toYaml . | nindent 8 }}
68       {{- end }}
69       {{- with .Values.affinity }}
70       affinity:
71         {{- toYaml . | nindent 8 }}
72       {{- end }}
73       {{- with .Values.tolerations }}
74       tolerations:
75         {{- toYaml . | nindent 8 }}
76       {{- end }}