From d9fabbf35360b45200dbfdd78b83179d32322a7c Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Fri, 16 Jan 2026 23:12:56 -0300 Subject: [PATCH] core: scale coredns replicas --- infrastructure/core/coredns-replicas.yaml | 8 ++++++++ infrastructure/core/kustomization.yaml | 1 + 2 files changed, 9 insertions(+) create mode 100644 infrastructure/core/coredns-replicas.yaml diff --git a/infrastructure/core/coredns-replicas.yaml b/infrastructure/core/coredns-replicas.yaml new file mode 100644 index 0000000..52b2aa8 --- /dev/null +++ b/infrastructure/core/coredns-replicas.yaml @@ -0,0 +1,8 @@ +# infrastructure/core/coredns-replicas.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: coredns + namespace: kube-system +spec: + replicas: 2 diff --git a/infrastructure/core/kustomization.yaml b/infrastructure/core/kustomization.yaml index 5e74d81..7a262ba 100644 --- a/infrastructure/core/kustomization.yaml +++ b/infrastructure/core/kustomization.yaml @@ -5,5 +5,6 @@ resources: - ../modules/base - ../modules/profiles/atlas-ha - coredns-custom.yaml + - coredns-replicas.yaml - ../sources/cert-manager/letsencrypt.yaml - ../sources/cert-manager/letsencrypt-prod.yaml