Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 664 for nftables (0.15 sec)

  1. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/after/v1alpha1.yaml

    logging:
      flushFrequency: 5s
      format: text
      options:
        json:
          infoBufferSize: "0"
        text:
          infoBufferSize: "0"
      verbosity: 0
    metricsBindAddress: 127.0.0.1:10249
    mode: ""
    nftables:
      masqueradeAll: false
      masqueradeBit: 14
      minSyncPeriod: 1s
      syncPeriod: 30s
    nodePortAddresses: null
    oomScoreAdj: -999
    portRange: ""
    showHiddenMetricsForVersion: ""
    winkernel:
      enableDSR: false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/v1alpha1/zz_generated.conversion.go

    		return err
    	}
    	if err := Convert_v1alpha1_KubeProxyIPVSConfiguration_To_config_KubeProxyIPVSConfiguration(&in.IPVS, &out.IPVS, s); err != nil {
    		return err
    	}
    	if err := Convert_v1alpha1_KubeProxyNFTablesConfiguration_To_config_KubeProxyNFTablesConfiguration(&in.NFTables, &out.NFTables, s); 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)
  3. pkg/proxy/nftables/doc.go

    limitations under the License.
    */
    
    // This is an empty file to avoid "build constraints exclude all Go files" error while running unit tests on non-linux platforms.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 03 07:00:59 UTC 2024
    - 719 bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/zz_generated.deepcopy.go

    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	out.ClientConnection = in.ClientConnection
    	in.Logging.DeepCopyInto(&out.Logging)
    	in.IPTables.DeepCopyInto(&out.IPTables)
    	in.IPVS.DeepCopyInto(&out.IPVS)
    	out.Winkernel = in.Winkernel
    	in.NFTables.DeepCopyInto(&out.NFTables)
    	out.DetectLocal = in.DetectLocal
    	if in.NodePortAddresses != nil {
    		in, out := &in.NodePortAddresses, &out.NodePortAddresses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 15:12:28 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/fuzzer/fuzzer.go

    			obj.HealthzBindAddress = fmt.Sprintf("%d.%d.%d.%d:%d", c.Intn(256), c.Intn(256), c.Intn(256), c.Intn(256), c.Intn(65536))
    			obj.IPTables.MasqueradeBit = ptr.To(c.Int31())
    			obj.IPTables.LocalhostNodePorts = ptr.To(c.RandBool())
    			obj.NFTables.MasqueradeBit = ptr.To(c.Int31())
    			obj.MetricsBindAddress = fmt.Sprintf("%d.%d.%d.%d:%d", c.Intn(256), c.Intn(256), c.Intn(256), c.Intn(256), c.Intn(65536))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. pkg/proxy/apis/config/validation/validation_test.go

    		},
    		"invalid mode non-existent": {
    			mode:         kubeproxyconfig.ProxyMode("non-existing"),
    			expectedErrs: field.ErrorList{field.Invalid(newPath.Child("ProxyMode"), "non-existing", "must be iptables, ipvs, nftables or blank (blank means the best-available proxy [currently iptables])")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/helpers_test.go

    func Test_diffNFTablesChain(t *testing.T) {
    	fake := knftables.NewFake(knftables.IPv4Family, "testing")
    	tx := fake.NewTransaction()
    
    	tx.Add(&knftables.Table{})
    	tx.Add(&knftables.Chain{
    		Name: "mark-masq-chain",
    	})
    	tx.Add(&knftables.Chain{
    		Name: "masquerade-chain",
    	})
    	tx.Add(&knftables.Chain{
    		Name: "empty-chain",
    	})
    
    	tx.Add(&knftables.Rule{
    		Chain: "mark-masq-chain",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - The iptables mode of kube-proxy now tracks accepted packets that are destined for node-ports on localhost by introducing `kubeproxy_iptables_localhost_nodeports_accepted_packets_total` metric.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/server_test.go

    	}{
    		{
    			name:               "iptables mode, IPv4 all-zeros bind address",
    			mode:               "iptables",
    			bindAddress:        "0.0.0.0",
    			clusterCIDR:        "1.2.3.0/24",
    			healthzBindAddress: "1.2.3.4:12345",
    			metricsBindAddress: "2.3.4.5:23456",
    		},
    		{
    			name:               "iptables mode, non-zeros IPv4 config",
    			mode:               "iptables",
    			bindAddress:        "9.8.7.6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/validation/validation.go

    	switch config.Mode {
    	case kubeproxyconfig.ProxyModeIPVS:
    		allErrs = append(allErrs, validateKubeProxyIPVSConfiguration(config.IPVS, newPath.Child("KubeProxyIPVSConfiguration"))...)
    	case kubeproxyconfig.ProxyModeNFTables:
    		allErrs = append(allErrs, validateKubeProxyNFTablesConfiguration(config.NFTables, newPath.Child("KubeProxyNFTablesConfiguration"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top