Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / uui / components / uui-intent-analysis / templates / job.yaml
1 {{/*
2 # Copyright © 2022 Huawei Technologies Co., Ltd. All rights reserved.
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.
15 */}}
16
17 apiVersion: batch/v1
18 kind: Job
19 metadata:
20   name: {{ include "common.fullname" . }}-init-postgres
21   namespace: {{ include "common.namespace" . }}
22   labels:
23     app: {{ include "common.name" . }}-job
24     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25     release: {{ include "common.release" . }}
26     heritage: {{ .Release.Service }}
27 spec:
28   backoffLimit: 20
29   template:
30     metadata:
31       labels:
32         app: {{ include "common.name" . }}-job
33         release: {{ include "common.release" . }}
34     spec:
35       restartPolicy: Never
36       initContainers:
37       - command:
38         - /app/ready.py
39         args:
40         - --service-name
41         - "{{ .Values.postgres.service.name2 }}"
42         env:
43         - name: NAMESPACE
44           valueFrom:
45             fieldRef:
46               apiVersion: v1
47               fieldPath: metadata.namespace
48         image: {{ include "repositoryGenerator.image.readiness" . }}
49         imagePullPolicy: {{ .Values.pullPolicy }}
50         name: {{ include "common.name" . }}-readiness
51         resources:
52           limits:
53             cpu: "100m"
54             memory: "500Mi"
55           requests:
56             cpu: "3m"
57             memory: "20Mi"
58       containers:
59       - name: {{ include "common.name" . }}-job
60         image: {{ include "repositoryGenerator.image.postgres" . }}
61         imagePullPolicy: {{ .Values.pullPolicy }}
62         env:
63         - name: PGUSER
64           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "login") | indent 10 }}
65         - name: PGPASSWORD
66           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 10 }}
67         command:
68         - /bin/sh
69         - -c
70         - |
71           psql -h $(UUI_INTENT_PG_PRIMARY_SERVICE_HOST) -f /aaa/init/intent-analysis-init.sql -d {{ .Values.postgres.config.pgDatabase }}
72         volumeMounts:
73         - name: init-data
74           mountPath: /aaa/init/intent-analysis-init.sql
75           subPath: intent-analysis-init.sql
76       {{ include "common.waitForJobContainer" . | indent 6 | trim }}
77       {{- include "common.imagePullSecrets" . | nindent 6 }}
78       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
79       volumes:
80       - name: init-data
81         configMap:
82           name: {{ include "common.fullname" . }}