From 00af14577c1b37058200cb249c012e1b4ff2d322 Mon Sep 17 00:00:00 2001 From: Edward Cheng Date: Thu, 13 Jun 2024 13:10:33 +1000 Subject: [PATCH 1/2] fixing adguard-home chart issue --- kubernetes/apps/adguard-home/app/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kubernetes/apps/adguard-home/app/release.yaml b/kubernetes/apps/adguard-home/app/release.yaml index ed48b3f..f5c2c31 100644 --- a/kubernetes/apps/adguard-home/app/release.yaml +++ b/kubernetes/apps/adguard-home/app/release.yaml @@ -35,12 +35,12 @@ spec: enabled: true hostPath: /mnt/nfs/AppData/adguardhome/conf mountPath: /opt/adguardhome/conf - type: Directory + type: hostPath work: enabled: true hostPath: /mnt/nfs/AppData/adguardhome/work mountPath: /opt/adguardhome/work - type: Directory + type: hostPath portal: open: enabled: true From 0b8c896b14debb59f35e1d13de9dfca25f8d30f5 Mon Sep 17 00:00:00 2001 From: Edward Cheng Date: Thu, 13 Jun 2024 13:18:48 +1000 Subject: [PATCH 2/2] fixing adguard-home chart issue --- kubernetes/apps/adguard-home/app/release.yaml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/kubernetes/apps/adguard-home/app/release.yaml b/kubernetes/apps/adguard-home/app/release.yaml index f5c2c31..d2df253 100644 --- a/kubernetes/apps/adguard-home/app/release.yaml +++ b/kubernetes/apps/adguard-home/app/release.yaml @@ -34,22 +34,20 @@ spec: config: enabled: true hostPath: /mnt/nfs/AppData/adguardhome/conf - mountPath: /opt/adguardhome/conf type: hostPath work: enabled: true hostPath: /mnt/nfs/AppData/adguardhome/work - mountPath: /opt/adguardhome/work type: hostPath portal: open: enabled: true - container: - volumeMounts: - - name: work - mountPath: /opt/adguardhome/work - readOnly: false - - name: config - mountPath: /opt/adguardhome/conf - readOnly: false + volumeMounts: + - name: work + mountPath: /opt/adguardhome/work + readOnly: false + - name: config + mountPath: /opt/adguardhome/conf + readOnly: false +