Jakub Latusek | be89684 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
Prateekinlinux | 445a18e | 2018-08-01 06:48:33 +0000 | [diff] [blame] | 2 | # 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 Latusek | be89684 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 15 | */}} |
Grzegorz-Lis | 055b6ce | 2020-07-23 10:03:54 +0200 | [diff] [blame] | 16 | apiVersion: apps/v1 |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 17 | kind: Deployment |
| 18 | metadata: |
| 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 Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 24 | release: {{ include "common.release" . }} |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 25 | heritage: {{ .Release.Service }} |
| 26 | spec: |
Grzegorz-Lis | 055b6ce | 2020-07-23 10:03:54 +0200 | [diff] [blame] | 27 | selector: |
| 28 | matchLabels: |
| 29 | app: {{ include "common.name" . }} |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 30 | replicas: {{ .Values.replicaCount }} |
| 31 | template: |
| 32 | metadata: |
| 33 | labels: |
| 34 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 35 | release: {{ include "common.release" . }} |
Huabing Zhao | 81b8976 | 2018-07-30 06:33:03 +0000 | [diff] [blame] | 36 | annotations: |
| 37 | sidecar.istio.io/inject: "{{.Values.istioSidecar}}" |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 38 | spec: |
Huabing Zhao | 8f7cc81 | 2018-08-08 06:27:37 +0000 | [diff] [blame] | 39 | serviceAccountName: msb |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 40 | containers: |
| 41 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | fd2f8b8 | 2020-11-21 22:50:06 +0100 | [diff] [blame] | 42 | image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.image }} |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 43 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
Krzysztof Opasiak | bc6a667 | 2020-11-23 22:02:51 +0100 | [diff] [blame] | 44 | securityContext: |
| 45 | runAsUser: {{ .Values.securityContext.runAsUser }} |
| 46 | runAsGroup: {{ .Values.securityContext.runAsGroup }} |
| 47 | command: |
| 48 | - docker-entrypoint.sh |
| 49 | args: |
| 50 | - "agent" |
| 51 | - "-dev" |
| 52 | - "-client" |
| 53 | - "0.0.0.0" |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 54 | ports: |
| 55 | - containerPort: {{ .Values.service.internalPort }} |
| 56 | # disable liveness probe when breakpoints set in debugger |
| 57 | # so K8s doesn't restart unresponsive container |
| 58 | {{- if eq .Values.liveness.enabled true }} |
| 59 | livenessProbe: |
| 60 | tcpSocket: |
| 61 | port: {{ .Values.service.internalPort }} |
| 62 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 63 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 64 | {{ end -}} |
| 65 | readinessProbe: |
| 66 | tcpSocket: |
| 67 | port: {{ .Values.service.internalPort }} |
| 68 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 69 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 70 | env: |
| 71 | volumeMounts: |
| 72 | - mountPath: /etc/localtime |
| 73 | name: localtime |
| 74 | readOnly: true |
Krzysztof Opasiak | bc6a667 | 2020-11-23 22:02:51 +0100 | [diff] [blame] | 75 | - mountPath: /usr/local/bin/docker-entrypoint.sh |
| 76 | name: entrypoint |
| 77 | subPath: docker-entrypoint.sh |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 78 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 79 | {{ include "common.resources" . | indent 12 }} |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 80 | {{- if .Values.nodeSelector }} |
| 81 | nodeSelector: |
| 82 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 83 | {{- end -}} |
| 84 | {{- if .Values.affinity }} |
| 85 | affinity: |
| 86 | {{ toYaml .Values.affinity | indent 10 }} |
| 87 | {{- end }} |
| 88 | volumes: |
| 89 | - name: localtime |
| 90 | hostPath: |
| 91 | path: /etc/localtime |
Krzysztof Opasiak | bc6a667 | 2020-11-23 22:02:51 +0100 | [diff] [blame] | 92 | - name: entrypoint |
| 93 | configMap: |
| 94 | name: {{ include "common.fullname" . }}-entrypoint |
| 95 | defaultMode: 0777 |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 96 | imagePullSecrets: |
| 97 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |