Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Proxier (0.12 sec)

  1. pkg/proxy/nftables/proxier.go

    		proxier.nodeLabels[k] = v
    	}
    	proxier.mu.Unlock()
    	proxier.logger.V(4).Info("Updated proxier node labels", "labels", node.Labels)
    
    	proxier.Sync()
    }
    
    // OnNodeUpdate is called whenever modification of an existing
    // node object is observed.
    func (proxier *Proxier) OnNodeUpdate(oldNode, node *v1.Node) {
    	if node.Name != proxier.hostname {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    func (proxier *Proxier) Sync() {
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.QueuedUpdate(proxier.ipFamily)
    	}
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Run()
    }
    
    // SyncLoop runs periodic work.  This is expected to run as a goroutine or as the main loop of the app.  It does not return.
    func (proxier *Proxier) SyncLoop() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    	}
    }
    
    // This assumes proxier.mu is held
    func (proxier *Proxier) probability(n int) string {
    	if n >= len(proxier.precomputedProbabilities) {
    		proxier.precomputeProbabilities(n)
    	}
    	return proxier.precomputedProbabilities[n]
    }
    
    // Sync is called to synchronize the proxier state to iptables as soon as possible.
    func (proxier *Proxier) Sync() {
    	if proxier.healthzServer != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. 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)
  6. pilot/pkg/model/push_context.go

    	Full bool
    
    	// ConfigsUpdated keeps track of configs that have changed.
    	// This is used as an optimization to avoid unnecessary pushes to proxies that are scoped with a Sidecar.
    	// If this is empty, then all proxies will get an update.
    	// Otherwise only proxies depend on these configs will get an update.
    	// The kind of resources are defined in pkg/config/schemas.
    	ConfigsUpdated sets.Set[ConfigKey]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    	mtlsTCPWithMxcALPNs = []string{"istio-peer-exchange", "istio"}
    )
    
    // BuildListeners produces a list of listeners and referenced clusters for all proxies
    func (configgen *ConfigGeneratorImpl) BuildListeners(node *model.Proxy,
    	push *model.PushContext,
    ) []*listener.Listener {
    	builder := NewListenerBuilder(node, push)
    
    	switch node.Type {
    	case model.SidecarProxy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    )
    
    // DefaultTransport is the default implementation of [Transport] and is
    // used by [DefaultClient]. It establishes network connections as needed
    // and caches them for reuse by subsequent calls. It uses HTTP proxies
    // as directed by the environment variables HTTP_PROXY, HTTPS_PROXY
    // and NO_PROXY (or the lowercase versions thereof).
    var DefaultTransport RoundTripper = &Transport{
    	Proxy: ProxyFromEnvironment,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // See https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
      string priorityClassName = 27 [deprecated = true];
    
      // Specifies how proxies are configured within Istio.
      ProxyConfig proxy = 28;
    
      // Specifies the Configuration for proxy_init container which sets the pods' networking to intercept the inbound/outbound traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. src/net/http/request.go

    	// After the HTTP request is sent the map values can be updated while
    	// the request body is read. Once the body returns EOF, the caller must
    	// not mutate Trailer.
    	//
    	// Few HTTP clients, servers, or proxies support HTTP trailers.
    	Trailer Header
    
    	// RemoteAddr allows HTTP servers and other software to record
    	// the network address that sent the request, usually for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top