Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for KubeProxyNFTablesConfiguration (1.13 sec)

  1. pkg/proxy/apis/config/v1alpha1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1alpha1.KubeProxyNFTablesConfiguration)(nil), (*config.KubeProxyNFTablesConfiguration)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha1_KubeProxyNFTablesConfiguration_To_config_KubeProxyNFTablesConfiguration(a.(*v1alpha1.KubeProxyNFTablesConfiguration), b.(*config.KubeProxyNFTablesConfiguration), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/types.go

    	// The default value is 0, which preserves the current timeout value on the system.
    	UDPTimeout metav1.Duration
    }
    
    // KubeProxyNFTablesConfiguration contains nftables-related configuration
    // details for the Kubernetes proxy server.
    type KubeProxyNFTablesConfiguration struct {
    	// masqueradeBit is the bit of the iptables fwmark space to use for SNAT if using
    	// the nftables proxy mode. Values must be within the range [0, 31].
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/validation/validation.go

    	case kubeproxyconfig.ProxyModeNFTables:
    		allErrs = append(allErrs, validateKubeProxyNFTablesConfiguration(config.NFTables, newPath.Child("KubeProxyNFTablesConfiguration"))...)
    	}
    	allErrs = append(allErrs, validateKubeProxyConntrackConfiguration(config.Conntrack, newPath.Child("KubeProxyConntrackConfiguration"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. cmd/kube-proxy/app/server_test.go

    				SyncPeriod:    metav1.Duration{Duration: 60 * time.Second},
    				ExcludeCIDRs:  []string{"10.20.30.40/16", "fd00:1::0/64"},
    			},
    			NFTables: kubeproxyconfig.KubeProxyNFTablesConfiguration{
    				MasqueradeAll: true,
    				MasqueradeBit: ptr.To[int32](18),
    				MinSyncPeriod: metav1.Duration{Duration: 10 * time.Second},
    				SyncPeriod:    metav1.Duration{Duration: 60 * time.Second},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top