We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87573ec commit 663117cCopy full SHA for 663117c
2 files changed
templates/deployment.yaml
@@ -51,9 +51,9 @@ spec:
51
mountPath: /usr/src/app/config/production.json
52
subPath: "production.json"
53
- name: {{ include "codexdocs.fullname" . }}-db
54
- mountPath: "/mnt/db"
+ mountPath: {{ .Values.configuration.production.database }}
55
- name: {{ include "codexdocs.fullname" . }}-uploads
56
- mountPath: "/mnt/uploads"
+ mountPath: {{ .Values.configuration.production.uploads }}
57
ports:
58
- name: http
59
containerPort: 3000
values.yaml
@@ -21,7 +21,7 @@ configuration:
21
port: 3000
22
database: "/mnt/db"
23
rcFile: "./.codexdocsrc"
24
- "uploads": "/mnt/uploads"
+ "uploads": "/usr/src/app/public/uploads"
25
"secret": "iamasecretstring"
26
27
image:
0 commit comments