Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsNotFoundError (0.14 sec)

  1. pkg/proxy/ipvs/proxier.go

    			if !utiliptables.IsNotFoundError(err) {
    				logger.Error(err, "Error removing iptables rules in ipvs proxier")
    				encounteredError = true
    			}
    		}
    	}
    
    	// Remove all of our chains.
    	for _, ch := range iptablesCleanupChains {
    		if err := ipt.DeleteChain(ch.table, ch.chain); err != nil {
    			if !utiliptables.IsNotFoundError(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    		args := append(jump.extraArgs,
    			"-m", "comment", "--comment", jump.comment,
    			"-j", string(jump.dstChain),
    		)
    		if err := ipt.DeleteRule(jump.table, jump.srcChain, args...); err != nil {
    			if !utiliptables.IsNotFoundError(err) {
    				logger.Error(err, "Error removing pure-iptables proxy rule")
    				encounteredError = true
    			}
    		}
    	}
    
    	// Flush and remove all of our "-t nat" chains.
    	iptablesData := bytes.NewBuffer(nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top