blob: 91a19baeac95a5ccb1fe3470698e40a50e5694f4 [file] [log] [blame]
刘洪青7aef1322021-09-18 11:24:23 +08001# 4.0.authx-log-installer.yaml
2
3---
4apiVersion: v1
5kind: ConfigMap
6metadata:
7 namespace: authx-log
8 name: authx-log-installer-env
9data:
10 DB_TYPE: mysql8
11
12
13---
14apiVersion: batch/v1
15kind: Job
16metadata:
17 namespace: authx-log
18 name: authx-log-installer
19spec:
20 completions: 1
21 parallelism: 1
22 template:
23 metadata:
24 labels:
25 app: authx-log-installer
26 spec:
27 restartPolicy: Never
28 containers:
29 - name: authx-log-installer
30 image: harbor.supwisdom.com/authx-log/authx-log-installer:1.4.0-RELEASE
31 imagePullPolicy: Always
32 envFrom:
33 - configMapRef:
34 name: jvm-env
35 - secretRef:
36 name: datasource-env-secret
37 - configMapRef:
38 name: authx-log-installer-env
39 resources:
40 requests:
41 memory: "256Mi"
42 limits:
43 memory: "256Mi"
44 imagePullSecrets:
45 - name: harbor-supwisdom