| # 4.0.authx-log-installer.yaml |
| |
| --- |
| apiVersion: v1 |
| kind: ConfigMap |
| metadata: |
| namespace: authx-log |
| name: authx-log-installer-env |
| data: |
| DB_TYPE: mysql8 |
| |
| |
| --- |
| apiVersion: batch/v1 |
| kind: Job |
| metadata: |
| namespace: authx-log |
| name: authx-log-installer |
| spec: |
| completions: 1 |
| parallelism: 1 |
| template: |
| metadata: |
| labels: |
| app: authx-log-installer |
| spec: |
| restartPolicy: Never |
| containers: |
| - name: authx-log-installer |
| image: harbor.supwisdom.com/authx-log/authx-log-installer:1.4.3-RELEASE |
| imagePullPolicy: Always |
| envFrom: |
| - configMapRef: |
| name: jvm-env |
| - secretRef: |
| name: datasource-env-secret |
| - configMapRef: |
| name: authx-log-installer-env |
| imagePullSecrets: |
| - name: harbor-registry |