blob: d229590da09c26fb43de0829fc4f37ec3a963024 [file] [log] [blame]
Jakub Latusekbe896842020-10-21 13:36:29 +02001{{/*
Prateekinlinux445a18e2018-08-01 06:48:33 +00002# Copyright © 2018 Amdocs, Bell Canada , ZTE
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.
Jakub Latusekbe896842020-10-21 13:36:29 +020015*/}}
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020016apiVersion: apps/v1
BorislavG0433c912018-03-21 18:35:30 +020017kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
BorislavG0433c912018-03-21 18:35:30 +020025 heritage: {{ .Release.Service }}
26spec:
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020027 selector:
28 matchLabels:
29 app: {{ include "common.name" . }}
BorislavG0433c912018-03-21 18:35:30 +020030 replicas: {{ .Values.replicaCount }}
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
Huabing Zhao81b89762018-07-30 06:33:03 +000036 annotations:
37 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
BorislavG0433c912018-03-21 18:35:30 +020038 spec:
BorislavG0433c912018-03-21 18:35:30 +020039 containers:
40 - name: {{ include "common.name" . }}
Sylvain Desbureauxfd2f8b82020-11-21 22:50:06 +010041 image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.image }}
BorislavG0433c912018-03-21 18:35:30 +020042 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Krzysztof Opasiakbc6a6672020-11-23 22:02:51 +010043 securityContext:
44 runAsUser: {{ .Values.securityContext.runAsUser }}
45 runAsGroup: {{ .Values.securityContext.runAsGroup }}
46 command:
47 - docker-entrypoint.sh
48 args:
49 - "agent"
50 - "-dev"
51 - "-client"
52 - "0.0.0.0"
BorislavG0433c912018-03-21 18:35:30 +020053 ports:
54 - containerPort: {{ .Values.service.internalPort }}
55 # disable liveness probe when breakpoints set in debugger
56 # so K8s doesn't restart unresponsive container
57 {{- if eq .Values.liveness.enabled true }}
58 livenessProbe:
59 tcpSocket:
60 port: {{ .Values.service.internalPort }}
61 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
62 periodSeconds: {{ .Values.liveness.periodSeconds }}
63 {{ end -}}
64 readinessProbe:
65 tcpSocket:
66 port: {{ .Values.service.internalPort }}
67 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
68 periodSeconds: {{ .Values.readiness.periodSeconds }}
69 env:
70 volumeMounts:
Krzysztof Opasiakbc6a6672020-11-23 22:02:51 +010071 - mountPath: /usr/local/bin/docker-entrypoint.sh
72 name: entrypoint
73 subPath: docker-entrypoint.sh
miroslavmasaryka7ac7f02023-03-01 14:12:26 +010074 resources: {{ include "common.resources" . | nindent 12 }}
BorislavG0433c912018-03-21 18:35:30 +020075 {{- if .Values.nodeSelector }}
76 nodeSelector:
77{{ toYaml .Values.nodeSelector | indent 10 }}
78 {{- end -}}
79 {{- if .Values.affinity }}
80 affinity:
81{{ toYaml .Values.affinity | indent 10 }}
82 {{- end }}
farida azmya4478e82021-10-11 13:48:11 +020083 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
BorislavG0433c912018-03-21 18:35:30 +020084 volumes:
Krzysztof Opasiakbc6a6672020-11-23 22:02:51 +010085 - name: entrypoint
86 configMap:
87 name: {{ include "common.fullname" . }}-entrypoint
88 defaultMode: 0777
Andreas Geisslerbd0d31a2024-03-20 09:51:32 +010089 {{- include "common.imagePullSecrets" . | nindent 6 }}