Skip to content

Commit 459b1d7

Browse files
authored
Merge pull request kubernetes#85527 from aojea/fix#85414
Revert "kube-proxy: check KUBE-MARK-DROP"
2 parents d50717d + 98be783 commit 459b1d7

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pkg/proxy/iptables/proxier.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ func (proxier *Proxier) syncProxyRules() {
847847
writeLine(proxier.filterChains, utiliptables.MakeChainLine(chainName))
848848
}
849849
}
850-
for _, chainName := range []utiliptables.Chain{kubeServicesChain, kubeNodePortsChain, kubePostroutingChain, KubeMarkMasqChain, KubeMarkDropChain} {
850+
for _, chainName := range []utiliptables.Chain{kubeServicesChain, kubeNodePortsChain, kubePostroutingChain, KubeMarkMasqChain} {
851851
if chain, ok := existingNATChains[chainName]; ok {
852852
writeBytesLine(proxier.natChains, chain)
853853
} else {

pkg/proxy/iptables/proxier_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2350,7 +2350,6 @@ COMMIT
23502350
:KUBE-NODEPORTS - [0:0]
23512351
:KUBE-POSTROUTING - [0:0]
23522352
:KUBE-MARK-MASQ - [0:0]
2353-
:KUBE-MARK-DROP - [0:0]
23542353
:KUBE-SVC-AHZNAGK3SCETOS2T - [0:0]
23552354
:KUBE-SEP-PXD6POUVGD2I37UY - [0:0]
23562355
:KUBE-SEP-SOKZUIT7SCEVIP33 - [0:0]

0 commit comments

Comments
 (0)