Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,924 for proxier (0.19 sec)

  1. pkg/proxy/ipvs/README.md

    ```
    Using ipvs Proxier.
    ```
    
    While there is no IPVS proxy rules or the following logs occurs indicate that the kube-proxy fails to use IPVS mode:
    ```
    Can't use ipvs proxier, trying iptables proxier
    Using iptables Proxier.
    ```
    See the following section for more details on debugging.
    
    ## Debug
    
    ### Check IPVS proxy rules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    			br.Buffered(), proxyAddress)
    	}
    	return proxyConn, nil
    }
    
    type proxier interface {
    	// proxy returns a connection to addr.
    	proxy(ctx context.Context, addr string) (net.Conn, error)
    }
    
    var _ proxier = &httpConnectProxier{}
    
    type httpConnectProxier struct {
    	conn         net.Conn
    	proxyAddress string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    			expectedTLSConfig: &tls.Config{InsecureSkipVerify: true},
    			errMsg:            "SpdyRoundTripper: UpgradeTransport is mutually exclusive to TLSConfig or Proxier",
    		},
    		"Proxier with UpgradeTransport: error": {
    			proxier:           func(req *http.Request) (*url.URL, error) { return nil, nil },
    			upgradeTransport:  &http.Transport{TLSClientConfig: &tls.Config{InsecureSkipVerify: true}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  4. cmd/kubemark/app/hollow_node.go

    	fs.BoolVar(&c.UseRealProxier, "use-real-proxier", true, "Has no effect.")
    	_ = fs.MarkDeprecated("use-real-proxier", "This flag is deprecated and will be removed in a future release.")
    	fs.DurationVar(&c.ProxierSyncPeriod, "proxier-sync-period", 30*time.Second, "Has no effect.")
    	_ = fs.MarkDeprecated("proxier-sync-period", "This flag is deprecated and will be removed in a future release.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server_other.go

    // platformSetup is called after setting up the ProxyServer, but before creating the
    // Proxier. It should fill in any platform-specific fields and perform other
    // platform-specific setup.
    func (s *ProxyServer) platformSetup(ctx context.Context) error {
    	return unsupportedError
    }
    
    // platformCheckSupported is called immediately before creating the Proxier, to check
    // what IP families are supported (and whether the configuration is usable at all).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. cluster/addons/kube-proxy/kube-proxy-rbac.yaml

      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    subjects:
      - kind: ServiceAccount
        name: kube-proxy
        namespace: kube-system
    roleRef:
      kind: ClusterRole
      name: system:node-proxier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 18:46:08 UTC 2019
    - 488 bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-role-bindings.yaml

        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:node-proxier
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: ClusterRole
        name: system:node-proxier
      subjects:
      - apiGroup: rbac.authorization.k8s.io
        kind: User
        name: system:kube-proxy
    - apiVersion: rbac.authorization.k8s.io/v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 11 19:01:47 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  8. pkg/proxy/types.go

    limitations under the License.
    */
    
    package proxy
    
    import (
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/proxy/config"
    )
    
    // Provider is the interface provided by proxier implementations.
    type Provider interface {
    	config.EndpointSliceHandler
    	config.ServiceHandler
    	config.NodeHandler
    	config.ServiceCIDRHandler
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. pkg/proxy/healthcheck/healthcheck_test.go

    	// Should return 200 "OK" after processing update for both IPv4 and IPv6 proxiers.
    	hs.Updated(v1.IPv4Protocol)
    	hs.Updated(v1.IPv6Protocol)
    	fakeClock.Step(5 * time.Second)
    	testHTTPHandler(hsTest, http.StatusOK, t)
    
    	// If IPv6 proxier is late for an update but IPv4 proxier is not then updating IPv4 proxier should have no effect.
    	hs.QueuedUpdate(v1.IPv6Protocol)
    	fakeClock.Step(25 * time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. pkg/proxy/endpoint.go

    	ZoneHints() sets.Set[string]
    }
    
    // BaseEndpointInfo contains base information that defines an endpoint.
    // This could be used directly by proxier while processing endpoints,
    // or can be used for constructing a more specific EndpointInfo struct
    // defined by the proxier if needed.
    type BaseEndpointInfo struct {
    	// Cache this values to improve performance
    	ip   string
    	port int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:38:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top