blob: 8ef27920b6bb8d67f15691c5a44de96910084868 [file] [log] [blame]
zhaoyh6530095f2021-11-10 17:16:19 +08001{{/*
2#============LICENSE_START========================================================
3# ================================================================================
4# Copyright (c) 2021 AT&T. All rights reserved.
5# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=========================================================
18*/}}
19
20apiVersion: apps/v1
21kind: Deployment
22metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
23spec:
24 replicas: 1
25 selector: {{- include "common.selectors" . | nindent 4 }}
26 template:
27 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
28 spec:
29 {{ include "common.podSecurityContext" . | indent 6 | trim}}
30 containers:
31 - name: {{ include "common.name" . }}
32 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
33 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
34 resources: {{ include "common.resources" . | nindent 12 }}
35 ports: {{ include "common.containerPorts" . | nindent 12 }}
36 {{- if eq .Values.liveness.enabled true }}
37 livenessProbe:
38 tcpSocket:
39 port: {{ .Values.service.internalPort }}
40 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
41 periodSeconds: {{ .Values.liveness.periodSeconds }}
42 {{ end }}
43 readinessProbe:
44 tcpSocket:
45 port: {{ .Values.service.internalPort }}
46 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
47 periodSeconds: {{ .Values.readiness.periodSeconds }}
48 volumeMounts:
49 - mountPath: /home/run/bert-master/upload
50 name: uui-server-v
51 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
52 volumes:
53 - name: uui-server-v
54 {{- if .Values.persistence.enabled }}
55 persistentVolumeClaim:
56 claimName: {{ include "common.fullname" . }}
57 {{- else }}
58 emptyDir: {}
59 {{- end }}
Andreas Geisslerbd0d31a2024-03-20 09:51:32 +010060 {{- include "common.imagePullSecrets" . | nindent 6 }}