We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0967469 commit cb22d2aCopy full SHA for cb22d2a
charts/templates/deployment.yaml
@@ -22,3 +22,10 @@ spec:
22
args: ["--db {{ .Values.db }} --log-level {{ .Values.log_level }} --bs_path {{ .Values.home_path }}/data --listen http://0.0.0.0:{{ .Values.port }} --config {{ .Values.home_path }}/config.yaml"]
23
ports:
24
- containerPort: {{ .Values.port }}
25
+ volumeMounts:
26
+ - name: jiaozifs-home
27
+ mountPath: "/app"
28
+ volumes:
29
30
+ persistentVolumeClaim:
31
+ claimName: {{ .Values.claim_name }}
charts/values.yaml
@@ -7,3 +7,4 @@ home_path: "/app/data"
7
port: 34913
8
ingress_name: nginx
9
log_level: info
10
+claim_name: jiaozifs-home"
0 commit comments