blob: 2f6b2286890ab534ed0367404db1ac5d3a42dc19 [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
刘洪青c6782852021-12-27 13:31:09 +080030 image: harbor.supwisdom.com/authx-log/authx-log-installer:1.5.0-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