Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Proxier (0.53 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. pkg/proxy/endpointschangetracker_test.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/utils/ptr"
    )
    
    func (proxier *FakeProxier) addEndpointSlice(slice *discovery.EndpointSlice) {
    	proxier.endpointsChanges.EndpointSliceUpdate(slice, false)
    }
    
    func (proxier *FakeProxier) updateEndpointSlice(oldSlice, slice *discovery.EndpointSlice) {
    	proxier.endpointsChanges.EndpointSliceUpdate(slice, false)
    }
    
    func (proxier *FakeProxier) deleteEndpointSlice(slice *discovery.EndpointSlice) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  6. 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)
  7. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{instance}}",
              "range": true,
              "refId": "A"
            }
          ],
          "title": "Total Proxied Head Requests",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top