Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for serviceMap (0.14 sec)

  1. pkg/kubelet/kubelet_pods.go

    			if _, exists := serviceMap[serviceName]; !exists {
    				serviceMap[serviceName] = service
    			}
    		} else if service.Namespace == ns && enableServiceLinks {
    			serviceMap[serviceName] = service
    		}
    	}
    
    	mappedServices := []*v1.Service{}
    	for key := range serviceMap {
    		mappedServices = append(mappedServices, serviceMap[key])
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/network.go

    // It iterates over all services, because mesh networks can be set with a service name.
    func (c *Controller) reloadNetworkGateways() {
    	c.Lock()
    	gwsChanged := false
    	for _, svc := range c.servicesMap {
    		if c.extractGatewaysInner(svc) {
    			gwsChanged = true
    			break
    		}
    	}
    	c.Unlock()
    	if gwsChanged {
    		c.NotifyGatewayHandlers()
    		// TODO ConfigUpdate via gateway handler
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/sidecar.go

    	// each listener imports an independent set of virtual services.
    	// Listener 1 could import a public virtual service for serviceA from
    	// namespace A that has some path rewrite, while listener2 could import
    	// a private virtual service for serviceA from the local namespace,
    	// with a different path rewrite or no path rewrites.
    	virtualServices []config.Config
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

    function create-certs {
      local -r primary_cn="${1}"
    
      # Determine extra certificate names for master
    
      # Create service_ip by stripping the network mask part from
      # SERVICE_CLUSTER_IP_RANGE and incrementing the host part with 1
      service_ip=${SERVICE_CLUSTER_IP_RANGE%/*}
      service_ip="${service_ip%.*}.$((${service_ip##*.} + 1))"
      local sans=""
      for extra in "$@"; do
        if [[ -n "${extra}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. pkg/controlplane/instance.go

    		PublicIP: c.ControlPlane.Generic.PublicAddress,
    
    		EndpointReconciler: c.Extra.EndpointReconcilerConfig.Reconciler,
    		EndpointInterval:   c.Extra.EndpointReconcilerConfig.Interval,
    
    		ServiceIP:                 c.Extra.APIServerServiceIP,
    		ServicePort:               c.Extra.APIServerServicePort,
    		PublicServicePort:         publicServicePort,
    		KubernetesServiceNodePort: c.Extra.KubernetesServiceNodePort,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top