Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 107 for Proxier (0.2 sec)

  1. pkg/proxy/kubemark/hollow_proxy.go

    				Mode:             proxyconfigapi.ProxyMode("fake"),
    				ConfigSyncPeriod: metav1.Duration{Duration: 30 * time.Second},
    				OOMScoreAdj:      ptr.To[int32](0),
    			},
    
    			Client:      client,
    			Proxier:     &FakeProxier{},
    			Broadcaster: broadcaster,
    			Recorder:    recorder,
    			NodeRef: &v1.ObjectReference{
    				Kind:      "Node",
    				Name:      nodeName,
    				UID:       types.UID(nodeName),
    				Namespace: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    	var proxier *Proxier
    
    	proxier = &Proxier{ipFamily: v1.IPv4Protocol}
    	proxier.OnServiceCIDRsChanged([]string{"172.30.0.0/16", "fd00:10:96::/112"})
    	assert.Equal(t, proxier.serviceCIDRs, "172.30.0.0/16")
    
    	proxier.OnServiceCIDRsChanged([]string{"172.30.0.0/16", "172.50.0.0/16", "fd00:10:96::/112", "fd00:172:30::/112"})
    	assert.Equal(t, proxier.serviceCIDRs, "172.30.0.0/16,172.50.0.0/16")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. pkg/proxy/endpointslicecache.go

    	ipFamily         v1.IPFamily
    	recorder         events.EventRecorder
    }
    
    // endpointSliceTracker keeps track of EndpointSlices as they have been applied
    // by a proxier along with any pending EndpointSlices that have been updated
    // in this cache but not yet applied by a proxier.
    type endpointSliceTracker struct {
    	applied endpointSliceDataByName
    	pending endpointSliceDataByName
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (1)
  4. cmd/kube-proxy/app/server.go

    	serviceConfig.RegisterEventHandler(s.Proxier)
    	go serviceConfig.Run(ctx.Done())
    
    	endpointSliceConfig := config.NewEndpointSliceConfig(ctx, informerFactory.Discovery().V1().EndpointSlices(), s.Config.ConfigSyncPeriod.Duration)
    	endpointSliceConfig.RegisterEventHandler(s.Proxier)
    	go endpointSliceConfig.Run(ctx.Done())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    		Port:           port,
    		Protocol:       protocol,
    	}
    }
    
    func makeServiceMap(proxier *Proxier, allServices ...*v1.Service) {
    	for i := range allServices {
    		proxier.OnServiceAdd(allServices[i])
    	}
    
    	proxier.mu.Lock()
    	defer proxier.mu.Unlock()
    	proxier.servicesSynced = true
    }
    
    type endpointExpectation struct {
    	endpoint string
    	isLocal  bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/constants/constants.go

    	NodeBootstrapTokenAuthGroup = "system:bootstrappers:kubeadm:default-node-token"
    	// KubeProxyClusterRoleName sets the name for the kube-proxy ClusterRole
    	KubeProxyClusterRoleName = "system:node-proxier"
    	// NodeBootstrapperClusterRoleName defines the name of the auto-bootstrapped ClusterRole for letting someone post a CSR
    	NodeBootstrapperClusterRoleName = "system:node-bootstrapper"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

            -Gateway ${pod_gateway} `
            -Name ${env:KUBE_NETWORK} `
            -Verbose
        $created_hns_network = $true
      }
      # This name of endpoint is referred in pkg/proxy/winkernel/proxier.go as part of
      # kube-proxy as well. A health check port for every service that is specified as
      # "externalTrafficPolicy: local" will be added on the endpoint.
      # PLEASE KEEP THEM CONSISTENT!!!
      $endpoint_name = "cbr0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    - Fixed issue with Winkernel Proxier - IPV6 load balancer policies were missing when service was configured with `ipFamilyPolicy`: `RequireDualStack` ([#115503](https://github.com/kubernetes/kubernetes/pull/115503), [@princepereira](https://github.com/princepereira))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.25.md

    - Fixing issue with Winkernel Proxier - ClusterIP Loadbalancers are missing if the ExternalTrafficPolicy is set to Local and the available endpoints are all remoteEndpoints. ([#116000](https://github.com/kubernetes/kubernetes/pull/116000), [@princepereira](https://github.com/princepereira)) [SIG Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  10. pilot/pkg/xds/pushqueue_test.go

    		p.MarkDone(proxies[0])
    		p.Enqueue(proxies[0], &model.PushRequest{})
    		ExpectDequeue(t, p, proxies[0])
    		ExpectTimeout(t, p)
    	})
    
    	t.Run("add and remove and add and markdone", func(t *testing.T) {
    		t.Parallel()
    		p := NewPushQueue()
    		defer p.ShutDown()
    
    		p.Enqueue(proxies[0], &model.PushRequest{})
    		ExpectDequeue(t, p, proxies[0])
    		p.Enqueue(proxies[0], &model.PushRequest{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top