Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for KubeProxyNFTablesConfiguration (0.74 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/zz_generated.deepcopy.go

    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeProxyNFTablesConfiguration.
    func (in *KubeProxyNFTablesConfiguration) DeepCopy() *KubeProxyNFTablesConfiguration {
    	if in == nil {
    		return nil
    	}
    	out := new(KubeProxyNFTablesConfiguration)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 15:12:28 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/v1alpha1/defaults_test.go

    				},
    				IPVS: kubeproxyconfigv1alpha1.KubeProxyIPVSConfiguration{
    					SyncPeriod: metav1.Duration{Duration: 30 * time.Second},
    				},
    				NFTables: kubeproxyconfigv1alpha1.KubeProxyNFTablesConfiguration{
    					MasqueradeBit: ptr.To[int32](14),
    					MasqueradeAll: false,
    					SyncPeriod:    metav1.Duration{Duration: 30 * time.Second},
    					MinSyncPeriod: metav1.Duration{Duration: 1 * time.Second},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/kube-proxy/config/v1alpha1.KubeProxyIPVSConfiguration":                                          schema_k8sio_kube_proxy_config_v1alpha1_KubeProxyIPVSConfiguration(ref),
    		"k8s.io/kube-proxy/config/v1alpha1.KubeProxyNFTablesConfiguration":                                      schema_k8sio_kube_proxy_config_v1alpha1_KubeProxyNFTablesConfiguration(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top