From 6afe532ef068a8d5b97d062ae68b8544cc757023 Mon Sep 17 00:00:00 2001 From: Devon Bautista <17506592+synackd@users.noreply.github.com> Date: Tue, 16 Dec 2025 15:52:28 -0700 Subject: [PATCH] feat(coredns): add header plugin Signed-off-by: Devon Bautista <17506592+synackd@users.noreply.github.com> --- build/coredns/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/coredns/main.go b/build/coredns/main.go index 2acc8d2..d03512e 100644 --- a/build/coredns/main.go +++ b/build/coredns/main.go @@ -10,6 +10,7 @@ import ( _ "github.com/coredns/coredns/plugin/errors" _ "github.com/coredns/coredns/plugin/file" _ "github.com/coredns/coredns/plugin/forward" + _ "github.com/coredns/coredns/plugin/header" _ "github.com/coredns/coredns/plugin/health" _ "github.com/coredns/coredns/plugin/hosts" _ "github.com/coredns/coredns/plugin/loadbalance" @@ -39,6 +40,7 @@ var directives = []string{ "coresmd", "k8s_gateway", // Standard plugins (add/remove as needed) + "header", "forward", "cache", "reload",