From 3e69ca34386ed58ece2204b8c6e3b3d1482afb5f Mon Sep 17 00:00:00 2001 From: anpham Date: Mon, 14 Jul 2025 04:52:28 +0000 Subject: [PATCH] Update 'hommer-deployment.yml' --- hommer-deployment.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/hommer-deployment.yml b/hommer-deployment.yml index c8018f1..cf2e0d5 100644 --- a/hommer-deployment.yml +++ b/hommer-deployment.yml @@ -18,6 +18,10 @@ spec: - name: git-repo-volume emptyDir: {} + - name: config-volume + configMap: + - name: homer-config + # Define init container initContainers: - name: git-cloner @@ -34,7 +38,11 @@ spec: image: b4bz/homer:v23.09.1 volumeMounts: - name: git-repo-volume - mountPath: /repo/assets # Homer's default config directory is usually /app/config or similar, not /www. You might need to adjust this. + mountPath: /assets + + - name: config-volume + mountPath: + - name: /www/assets ports: - containerPort: 8080 ---