Skip to content

Commit c311dff

Browse files
committed
feat: update demo-server chart
1 parent 1eb011a commit c311dff

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

charts/d5-demo-server/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ maintainers:
55
66
name: Elegant Themes
77
name: d5-demo-server
8-
version: 1.0.0
8+
version: 1.0.1

charts/d5-demo-server/templates/d5-demo-server.yml

+16
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ spec:
9292
volumeMounts:
9393
- name: wordpress
9494
mountPath: /srv
95+
- name: demo-mysql
96+
mountPath: /var/lib/mysql
97+
- name: demo-redis
98+
mountPath: /var/lib/redis
9599
- name: config
96100
mountPath: /config
97101
readOnly: true
@@ -227,6 +231,8 @@ spec:
227231
volumeMounts:
228232
- name: wordpress
229233
mountPath: /srv
234+
- name: demo-mysql
235+
mountPath: /var/lib/mysql
230236
- name: config
231237
mountPath: /config
232238
readOnly: true
@@ -288,6 +294,8 @@ spec:
288294
volumeMounts:
289295
- name: wordpress
290296
mountPath: /srv
297+
- name: demo-redis
298+
mountPath: /var/lib/redis
291299
- name: config
292300
mountPath: /config
293301
readOnly: true
@@ -297,6 +305,14 @@ spec:
297305
hostPath:
298306
path: /srv
299307
type: DirectoryOrCreate
308+
- name: demo-mysql
309+
hostPath:
310+
path: /var/lib/demo-mysql
311+
type: DirectoryOrCreate
312+
- name: demo-redis
313+
hostPath:
314+
path: /var/lib/demo-redis
315+
type: DirectoryOrCreate
300316
- name: config
301317
secret:
302318
secretName: secrets

0 commit comments

Comments
 (0)