From e7835fe6012ced725fff681fe8afc7571f6de7a1 Mon Sep 17 00:00:00 2001 From: prettysunflower Date: Sat, 31 May 2025 10:57:48 +0200 Subject: [PATCH] apps(technitium): Reliability - Changed the number of replicas to 1 and the PVC to ReadWriteOnce --- apps/technitium/deployment.yaml | 2 +- apps/technitium/pvc.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/technitium/deployment.yaml b/apps/technitium/deployment.yaml index 473588d..3c1ca1c 100644 --- a/apps/technitium/deployment.yaml +++ b/apps/technitium/deployment.yaml @@ -5,7 +5,7 @@ metadata: labels: app.kubernetes.io/name: technitium-dns spec: - replicas: 3 + replicas: 1 selector: matchLabels: app.kubernetes.io/name: technitium-dns diff --git a/apps/technitium/pvc.yaml b/apps/technitium/pvc.yaml index 626bac5..bf8b83f 100644 --- a/apps/technitium/pvc.yaml +++ b/apps/technitium/pvc.yaml @@ -4,8 +4,8 @@ metadata: name: technitium-data-pvc spec: accessModes: - - ReadWriteMany + - ReadWriteOnce storageClassName: longhorn resources: requests: - storage: 1Gi \ No newline at end of file + storage: 1Gi