Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ipt (0.06 sec)

  1. pkg/proxy/iptables/proxier.go

    	// We pass syncPeriod to ipt.Monitor, which will call us only if it needs to.
    	// We need to pass *some* maxInterval to NewBoundedFrequencyRunner anyway though.
    	// time.Hour is arbitrary.
    	proxier.syncRunner = async.NewBoundedFrequencyRunner("sync-runner", proxier.syncProxyRules, minSyncPeriod, time.Hour, burstSyncs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    func cleanupIptablesLeftovers(ctx context.Context, ipt utiliptables.Interface) (encounteredError bool) {
    	logger := klog.FromContext(ctx)
    	// Unlink the iptables chains created by ipvs Proxier
    	for _, jc := range iptablesJumpChain {
    		args := []string{
    			"-m", "comment", "--comment", jc.comment,
    			"-j", string(jc.to),
    		}
    		if err := ipt.DeleteRule(jc.table, jc.from, args...); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top