From 0b1e364814ee2deee35341dd7cad7cd200ef5332 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Sat, 11 Jun 2022 13:09:58 -0400 Subject: [PATCH] proxy/ipvs: fix a few comments --- pkg/proxy/ipvs/proxier.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/proxy/ipvs/proxier.go b/pkg/proxy/ipvs/proxier.go index 14fd678fc9c..f62c2b76ba5 100644 --- a/pkg/proxy/ipvs/proxier.go +++ b/pkg/proxy/ipvs/proxier.go @@ -63,7 +63,7 @@ const ( // kubeServicesChain is the services portal chain kubeServicesChain utiliptables.Chain = "KUBE-SERVICES" - // KubeFireWallChain is the kubernetes firewall chain. + // kubeFirewallChain is the kubernetes firewall chain. kubeFirewallChain utiliptables.Chain = "KUBE-FIREWALL" // kubePostroutingChain is the kubernetes postrouting chain @@ -1731,13 +1731,13 @@ func (proxier *Proxier) writeIptablesRules() { ) proxier.natRules.Write(args, "-j", string(kubeNodePortChain)) - // mark drop for KUBE-LOAD-BALANCER + // mark for masquerading for KUBE-LOAD-BALANCER proxier.natRules.Write( "-A", string(kubeLoadBalancerChain), "-j", string(kubeMarkMasqChain), ) - // mark drop for KUBE-FIRE-WALL + // mark drop for KUBE-FIREWALL proxier.natRules.Write( "-A", string(kubeFirewallChain), "-j", string(kubeMarkDropChain),