Add helm chart for script version use case
[nonrtric/rapp/healthcheck.git] / test / usecases / healthcheck / scriptversion / helm / healthcheck / 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 "healthcheck.fullname" . }}
20   labels:
21     {{- include "healthcheck.labels" . | nindent 4 }}
22 spec:
23   replicas: {{ .Values.replicaCount }}
24   selector:
25     matchLabels:
26       {{- include "healthcheck.selectorLabels" . | nindent 6 }}
27   template:
28     metadata:
29       {{- with .Values.podAnnotations }}
30       annotations:
31         {{- toYaml . | nindent 8 }}
32       {{- end }}
33       labels:
34         {{- include "healthcheck.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: PMS_HOST
50             value: {{ .Values.policymanagementservice.pmsHost }}
51           - name: POLICY_BODY_PATH
52             value: {{ .Values.policymanagementservice.policyBodyPath | toJson | quote }}
53           command: [ "python3", "main.py" ]
54           args: [
55                   "--pmsHost",  "$(PMS_HOST)"
56                 ]
57           ports:
58             - name: http
59               containerPort: 80
60               protocol: TCP
61           resources:
62             {{- toYaml .Values.resources | nindent 12 }}
63       {{- with .Values.nodeSelector }}
64       nodeSelector:
65         {{- toYaml . | nindent 8 }}
66       {{- end }}
67       {{- with .Values.affinity }}
68       affinity:
69         {{- toYaml . | nindent 8 }}
70       {{- end }}
71       {{- with .Values.tolerations }}
72       tolerations:
73         {{- toYaml . | nindent 8 }}
74       {{- end }}