Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 65 of 65 for serviceentry (0.75 sec)

  1. pkg/adsc/adsc.go

    	NodeType model.NodeType
    
    	// IP is currently the primary key used to locate inbound configs. It is sent by client,
    	// must match a known endpoint IP. Tests can use a ServiceEntry to register fake IPs.
    	IP string
    
    	// CertDir is the directory where mTLS certs are configured.
    	// If CertDir and Secret are empty, an insecure connection will be used.
    	// TODO: implement SecretManager for cert dir
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent_test.go

    	opt := tlsOptions(t, certPem)
    	// Set up a simple service to make sure we have mTLS requested
    	ds := xdsfake.NewFakeDiscoveryServer(t, xdsfake.FakeOptions{ConfigString: `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: app
      namespace: default
    spec:
      hosts:
      - app.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.gen.go

    	// Description: Virtual IP addresses are required for ports serving TCP (or unset) protocol when ISTIO_META_DNS_AUTO_ALLOCATE is not set on a proxy
    	ServiceEntryAddressesRequired = diag.NewMessageType(diag.Warning, "IST0134", "ServiceEntry addresses are required for this protocol.")
    
    	// DeprecatedAnnotation defines a diag.MessageType for message "DeprecatedAnnotation".
    	// Description: A resource is using a deprecated Istio annotation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller.go

    		endpoints := c.buildEndpointsForService(conv, true)
    		if len(endpoints) > 0 {
    			c.opts.XDSUpdater.EDSCacheUpdate(shard, string(hostname), svc.Namespace, endpoints)
    		}
    		cu.Insert(model.ConfigKey{
    			Kind:      kind.ServiceEntry,
    			Name:      string(hostname),
    			Namespace: svc.Namespace,
    		})
    	}
    	if len(cu) > 0 {
    		c.opts.XDSUpdater.ConfigUpdate(&model.PushRequest{
    			Full:           false,
    			ConfigsUpdated: cu,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    		subsetClusterName = model.BuildDNSSrvSubsetKey(model.TrafficDirectionOutbound, subset.Name, service.Hostname, opts.port.Port)
    	}
    	// clusters with discovery type STATIC, STRICT_DNS rely on cluster.LoadAssignment field.
    	// ServiceEntry's need to filter hosts based on subset.labels in order to perform weighted routing
    	var lbEndpoints []*endpoint.LocalityLbEndpoints
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top