Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ProxyMode (0.15 sec)

  1. cmd/kube-proxy/app/server_other.go

    	return nil, unsupportedError
    }
    
    // platformCleanup removes stale kube-proxy rules that can be safely removed.
    func platformCleanup(ctx context.Context, mode proxyconfigapi.ProxyMode, cleanupAndExit bool) error {
    	return unsupportedError
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/proxy/kubemark/hollow_proxy.go

    	recorder events.EventRecorder,
    ) *HollowProxy {
    	return &HollowProxy{
    		ProxyServer: &proxyapp.ProxyServer{
    			Config: &proxyconfigapi.KubeProxyConfiguration{
    				Mode:             proxyconfigapi.ProxyMode("fake"),
    				ConfigSyncPeriod: metav1.Duration{Duration: 30 * time.Second},
    				OOMScoreAdj:      ptr.To[int32](0),
    			},
    
    			Client:      client,
    			Proxier:     &FakeProxier{},
    			Broadcaster: broadcaster,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/server_windows.go

    	}
    
    	return proxier, nil
    }
    
    // platformCleanup removes stale kube-proxy rules that can be safely removed.
    func platformCleanup(ctx context.Context, mode proxyconfigapi.ProxyMode, cleanupAndExit bool) error {
    	if cleanupAndExit {
    		return errors.New("--cleanup-and-exit is not implemented on Windows")
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top