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.
2 parents ce3ee54 + b22853e commit 3598ed6Copy full SHA for 3598ed6
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
@@ -3,7 +3,8 @@
3
# See README.md for details.
4
replicas: 1
5
db: ""
6
-home_path: "/app/data"
+home_path: "/app"
7
port: 34913
8
ingress_name: nginx
9
log_level: info
10
+claim_name: jiaozifs-home
0 commit comments