Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for registry_ (0.36 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller.go

    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var (
    	_   serviceregistry.Instance = &Controller{}
    	log                          = istiolog.RegisterScope("serviceentry", "ServiceEntry registry")
    )
    
    var (
    	prime  = 65011     // Used for secondary hash function.
    	maxIPs = 256 * 254 // Maximum possible IPs for address allocation.
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/endpointshards.go

    type EndpointShards struct {
    	// mutex protecting below map.
    	sync.RWMutex
    
    	// Shards is used to track the shards. EDS updates are grouped by shard.
    	// Current implementation uses the registry name as key - in multicluster this is the
    	// name of the k8s cluster, derived from the config (secret).
    	Shards map[ShardKey][]*IstioEndpoint
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. releasenotes/notes/serviceregistry-order.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50968
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 214 bytes
    - Viewed (0)
  4. pkg/istio-agent/agent.go

    					}
    					for _, addr := range ipv6 {
    						addresses = append(addresses, addr.String())
    					}
    					nt.Table[host] = &dnsProto.NameTable_NameInfo{
    						Ips:      addresses,
    						Registry: "Kubernetes",
    					}
    				}
    			}
    		})
    		return nt
    	}
    	return nil
    }
    
    func (a *Agent) Close() {
    	if a.xdsProxy != nil {
    		a.xdsProxy.close()
    	}
    	if a.localDNSServer != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar.go

    			log.Debugf("Service %s/%s from registry %s ignored as it is already added", s.Attributes.Namespace, s.Hostname, s.Attributes.ServiceRegistry)
    			return
    		}
    		// We do not merge k8s service with any other services from other registries
    		if existing.Attributes.ServiceRegistry == provider.Kubernetes && s.Attributes.ServiceRegistry != provider.Kubernetes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server_test.go

    		}
    	}))
    	t.Cleanup(app.Close)
    	envoyPort, err := strconv.Atoi(strings.Split(envoyServer.URL, ":")[2])
    	if err != nil {
    		t.Fatal(err)
    	}
    	registry, err := initializeMonitoring()
    	if err != nil {
    		t.Fatal(err)
    	}
    	server := &Server{
    		registry: registry,
    		prometheus: &PrometheusScrapeConfiguration{
    			Port: strings.Split(app.URL, ":")[2],
    		},
    		envoyStatsPort: envoyPort,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. pkg/test/env/istio.go

    	GCEMetadataServerInstallFilePath = path.Join(IstioSrc, getInstallationFile("gcemetadata/gce_metadata_server.yaml"))
    
    	// RegistryRedirectorServerInstallFilePath is the registry redirector installation file.
    	RegistryRedirectorServerInstallFilePath = path.Join(IstioSrc, getInstallationFile("registryredirector/registry_redirector_server.yaml"))
    )
    
    var (
    	_, b, _, _ = runtime.Caller(0)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
        # Enabled by default in master for maximising testing.
        istiod:
          enableAnalysis: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. pilot/pkg/xds/ads.go

    }
    
    func (conn *Connection) XdsConnection() *xds.Connection {
    	return &conn.Connection
    }
    
    func (conn *Connection) Proxy() *model.Proxy {
    	return conn.proxy
    }
    
    // Event represents a config or registry event that results in a push.
    type Event struct {
    	// pushRequest PushRequest to use for the push.
    	pushRequest *model.PushRequest
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. tests/integration/pilot/multiplecontrolplanes/main_test.go

    					statusCode: http.StatusOK,
    					from:       apps.NS[1].A,
    					to:         apps.NS[2].B,
    				},
    				{
    					name:       "workloads within different usergroups cannot communicate, registry only",
    					statusCode: http.StatusBadGateway,
    					from:       apps.NS[0].A,
    					to:         apps.NS[1].B,
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top