Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NFTablesProxyMode (0.26 sec)

  1. pkg/features/kube_features.go

    	// owner: @danwinship
    	// kep: https://kep.k8s.io/3866
    	// alpha: v1.29
    	// beta: v1.31
    	//
    	// Allows running kube-proxy with `--mode nftables`.
    	NFTablesProxyMode featuregate.Feature = "NFTablesProxyMode"
    
    	// owner: @aravindhp @LorbusChris
    	// kep: http://kep.k8s.io/2271
    	// alpha: v1.27
    	// beta: v1.30
    	//
    	// Enables querying logs of node services using the /logs endpoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/validation/validation.go

    	validModes := sets.New[string](
    		string(kubeproxyconfig.ProxyModeIPTables),
    		string(kubeproxyconfig.ProxyModeIPVS),
    	)
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.NFTablesProxyMode) {
    		validModes.Insert(string(kubeproxyconfig.ProxyModeNFTables))
    	}
    
    	if mode == "" || validModes.Has(string(mode)) {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/server_linux.go

    			encounteredError = ipvs.CleanupLeftovers(ctx, ipvsInterface, ipt, ipsetInterface) || encounteredError
    		}
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.NFTablesProxyMode) {
    		// Clean up nftables rules when switching to iptables or ipvs, or if cleanupAndExit
    		if isIPTablesBased(mode) || cleanupAndExit {
    			encounteredError = nftables.CleanupLeftovers(ctx) || encounteredError
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - `kube-proxy` now has a new nftables-based mode, available by running
      
          `kube-proxy --feature-gates NFTablesProxyMode=true --proxy-mode nftables`
      
      This is currently an alpha-level feature and while it probably will not
      eat your data, it may nibble at it a bit. (It passes e2e testing but has
      not yet seen real-world use.)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top