Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsNotFoundError (0.27 sec)

  1. 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