From c51aaae09237525b239522ebedec3e6750087808 Mon Sep 17 00:00:00 2001 From: Lior Noy Date: Thu, 23 May 2024 17:01:39 +0300 Subject: [PATCH] Add DHCP port --- commatrix/static-custom-entries.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/commatrix/static-custom-entries.go b/commatrix/static-custom-entries.go index 33bdbce8..1a7eab7e 100644 --- a/commatrix/static-custom-entries.go +++ b/commatrix/static-custom-entries.go @@ -13,6 +13,17 @@ var generalStaticEntriesWorker = []types.ComDetails{ Pod: "", Container: "", Optional: true, + }, + { + Direction: "ingress", + Protocol: "TCP", + Port: "67", + NodeRole: "worker", + Service: "DHCP", + Namespace: "", + Pod: "", + Container: "", + Optional: true, }, { Direction: "ingress", Protocol: "TCP", @@ -167,6 +178,17 @@ var generalStaticEntriesMaster = []types.ComDetails{ Pod: "", Container: "", Optional: true, + }, + { + Direction: "ingress", + Protocol: "TCP", + Port: "67", + NodeRole: "master", + Service: "DHCP", + Namespace: "", + Pod: "", + Container: "", + Optional: true, }, { Direction: "ingress", Protocol: "TCP",