blob: ed1298b1771337319273dfa0a4eda709db1b63bf [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
刘洪青e20070c2022-01-10 18:42:14 +080030 image: harbor.supwisdom.com/authx-log/authx-log-installer:1.4.3-RELEASE
刘洪青7aef1322021-09-18 11:24:23 +080031 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
刘洪青7aef1322021-09-18 11:24:23 +080039 imagePullSecrets:
刘洪青50e2f582021-09-21 17:10:31 +080040 - name: harbor-registry