Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 77 of 77 for serviceentry (0.3 sec)

  1. 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)
  2. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

      names:
        categories:
        - istio-io
        - networking-istio-io
        kind: ServiceEntry
        listKind: ServiceEntryList
        plural: serviceentries
        shortNames:
        - se
        singular: serviceentry
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: The hosts associated with the ServiceEntry
          jsonPath: .spec.hosts
          name: Hosts
          type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  3. 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)
  4. manifests/charts/base/crds/crd-all.gen.yaml

      names:
        categories:
        - istio-io
        - networking-istio-io
        kind: ServiceEntry
        listKind: ServiceEntryList
        plural: serviceentries
        shortNames:
        - se
        singular: serviceentry
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: The hosts associated with the ServiceEntry
          jsonPath: .spec.hosts
          name: Hosts
          type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    	test.SetForTest(t, &features.EnableDualStack, true)
    	service := buildService("test1.com", "0.0.0.0", protocol.TCP, tnow.Add(1*time.Second))
    	service.Attributes.ServiceRegistry = provider.External // Imitate a ServiceEntry with no addresses
    	services := []*model.Service{service}
    	for _, p := range []*model.Proxy{getProxy(), &dualStackProxy} {
    		p.DiscoverIPMode()
    		listeners := buildOutboundListeners(t, p, nil, nil, services...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

    ns":{"calcs":["lastNotNull"],"fields":"","values":false},"textMode":"auto"},"pluginVersion":"10.1.5","targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"max(pilot_k8s_cfg_events{type=\"ServiceEntry\", event=\"add\"}) - (max(pilot_k8s_cfg_events{type=\"ServiceEntry\", event=\"delete\"}) or max(up * 0))","format":"time_series","intervalFactor":1,"refId":"A"}],"title":"Service Entries","type":"stat"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"fieldConfig":{"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  7. 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