Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for serviceentry (0.4 sec)

  1. pilot/pkg/xds/delta_test.go

    	s.MemRegistry.RemoveService("adsupdate.example.com")
    	s.Discovery.ConfigUpdate(&model.PushRequest{
    		Full:           true,
    		ConfigsUpdated: sets.New(model.ConfigKey{Kind: kind.ServiceEntry, Name: "adsupdate.example.com", Namespace: "default"}),
    	})
    	s.EnsureSynced(t)
    
    	ads = s.ConnectDeltaADS()
    	// Sometimes we get an EDS request first before CDS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/stats_test.go

    			t.ConfigIstio().Eval(ist.Settings().SystemNamespace, map[string]any{
    				"Namespace": apps.External.Namespace.Name(),
    				"Hostname":  cdeployment.ExternalHostname,
    			}, `apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-service
    spec:
      exportTo: [.]
      hosts:
      - {{.Hostname}}
      location: MESH_EXTERNAL
      resolution: DNS
      endpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. istioctl/pkg/precheck/precheck.go

    				changed = true
    			}
    		}
    		if changed {
    			res := ObjectToInstance(se)
    			messages.Add(msg.NewUpdateIncompatibility(res,
    				"ENABLE_RESOLUTION_NONE_TARGET_PORT", "1.21",
    				"ServiceEntry with resolution NONE and a targetPort set previously did nothing but now is respected", "1.21"))
    		}
    	}
    	return nil
    }
    
    func checkExternalNameAlias(cli kube.CLIClient, messages *diag.Messages) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. pilot/pkg/security/authn/policy_applier.go

    			} else {
    				model.IncLookupClusterFailures("jwks")
    				// Log error and create remote JWKs with fake cluster
    				authnLog.Errorf("Failed to look up Envoy cluster %v. "+
    					"Please create ServiceEntry to register external JWKs server or "+
    					"set PILOT_JWT_ENABLE_REMOTE_JWKS to hybrid/istiod mode.", err)
    				provider.JwksSourceSpecifier = &envoy_jwt.JwtProvider_RemoteJwks{
    					RemoteJwks: &envoy_jwt.RemoteJwks{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. pkg/model/proxy.go

    	// DNSCapture indicates whether the workload has enabled dns capture
    	DNSCapture StringBool `json:"DNS_CAPTURE,omitempty"`
    
    	// DNSAutoAllocate indicates whether the workload should have auto allocated addresses for ServiceEntry
    	// This allows resolving ServiceEntries, which is especially useful for distinguishing TCP traffic
    	// This depends on DNSCapture.
    	DNSAutoAllocate StringBool `json:"DNS_AUTO_ALLOCATE,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. architecture/ambient/ztunnel.md

    This includes things like its IP address, identity, metadata (name, namespace, app, version, etc), and whether it has a waypoint proxy associated.
    
    The `Service` aims to represent everything about a service (generally a `Service` or `ServiceEntry`).
    This includes things like its IP addresses, ports and an associated waypoint proxy if it has one.
    
    ### Authorization Type
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/ep_filters_test.go

    		// network1 has one endpoint in each cluster
    		{Cluster: "cluster1a"}: {
    			{Network: "network1", Address: "10.0.0.1"},
    			{Network: "network1", Address: "foo.bar"}, // endpoint generated from ServiceEntry
    			{
    				Network: "network1", Address: "10.0.0.3", // endpoint when using HBONE
    				Labels: map[string]string{model.TunnelLabel: model.TunnelHTTP},
    			},
    		},
    		{Cluster: "cluster1b"}: {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. pkg/config/analysis/msg/messages.yaml

        code: IST0134
        level: Warning
        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"
        template: "ServiceEntry addresses are required for this protocol."
    
      - name: "DeprecatedAnnotation"
        code: IST0135
        level: Info
        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
    - 23.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/service.go

    	// by the caller)
    	Resolution Resolution
    
    	// MeshExternal (if true) indicates that the service is external to the mesh.
    	// These services are defined using Istio's ServiceEntry spec.
    	MeshExternal bool
    
    	// ResourceVersion represents the internal version of this object.
    	ResourceVersion string
    }
    
    func (s *Service) NamespacedName() types.NamespacedName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ads.go

    	} else {
    		push = request.Push
    		if len(request.ConfigsUpdated) == 0 {
    			sidecar = true
    			gateway = true
    		}
    		for conf := range request.ConfigsUpdated {
    			switch conf.Kind {
    			case kind.ServiceEntry, kind.DestinationRule, kind.VirtualService, kind.Sidecar, kind.HTTPRoute, kind.TCPRoute, kind.TLSRoute, kind.GRPCRoute:
    				sidecar = true
    			case kind.Gateway, kind.KubernetesGateway, kind.GatewayClass, kind.ReferenceGrant:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top