Skip to content

Commit e6e6083

Browse files
committed
(wikijs) add wiki #5744
1 parent f582bdb commit e6e6083

File tree

1 file changed

+20
-13
lines changed

1 file changed

+20
-13
lines changed

cluster/apps/default/wiki/wikijs/app/helm-release.yaml

+20-13
Original file line numberDiff line numberDiff line change
@@ -38,21 +38,28 @@ spec:
3838
pullPolicy: IfNotPresent
3939
tag: "2.5.301"
4040
env:
41-
TZ: ${TZ}
42-
APP_URL: "https://wiki.${XYZ_DOMAIN}"
43-
DB_TYPE: postgres
44-
DB_HOST: wiki-postgres-rw.default.svc.cluster.local
45-
DB_PORT: 5432
46-
DB_NAME: wikijs
47-
envFrom:
41+
- name: TZ
42+
value: ${TZ}
43+
- name: APP_URL
44+
value: "https://wiki.${XYZ_DOMAIN}"
45+
- name: DB_TYPE
46+
value: postgres
47+
- name: DB_HOST
48+
value: wiki-postgres-rw.default.svc.cluster.local
49+
- name: DB_PORT
50+
value: 5432
51+
- name: DB_NAME
52+
value: wikijs
4853
- name: DB_USER
49-
secretRef:
50-
name: wiki-postgres-user
51-
key: username
54+
valueFrom:
55+
secretRef:
56+
name: wiki-postgres-user
57+
key: username
5258
- name: DB_PASS
53-
secretRef:
54-
name: wiki-postgres-user
55-
key: password
59+
valueFrom:
60+
secretRef:
61+
name: wiki-postgres-user
62+
key: password
5663
service:
5764
main:
5865
ports:

0 commit comments

Comments
 (0)