Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for serviceentry (0.17 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    	var ns string
    	// Currently supported types are Gateway, Service, and ServiceEntry
    	if kind == gvk.KubernetesGateway.Kind && group == gvk.KubernetesGateway.Group {
    		ik = gvk.KubernetesGateway
    	} else if kind == gvk.Service.Kind && group == gvk.Service.Group {
    		ik = gvk.Service
    	} else if kind == gvk.ServiceEntry.Kind && group == gvk.ServiceEntry.Group {
    		ik = gvk.ServiceEntry
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/peer_authentication_simulation_test.go

      selector:
        matchLabels:
          app: foo
      mtls:
        mode: DISABLE
      portLevelMtls:
        9000:
          mode: PERMISSIVE
    ---`
    	sePort8000 := `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
     name: se
    spec:
     hosts:
     - foo.bar
     endpoints:
     - address: 1.1.1.1
     location: MESH_INTERNAL
     resolution: STATIC
     ports:
     - name: http
       number: 8000
       protocol: HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	serviceEntries := kclient.NewDelayedInformer[*networkingclient.ServiceEntry](options.Client,
    		gvr.ServiceEntry, kubetypes.StandardInformer, filter)
    	ServiceEntries := krt.WrapClient[*networkingclient.ServiceEntry](serviceEntries, krt.WithName("ServiceEntries"))
    
    	workloadEntries := kclient.NewDelayedInformer[*networkingclient.WorkloadEntry](options.Client,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.proto

      //
      // cluster/group/kind/namespace/name/section-name
      //
      // As an example, a ServiceEntry with two WorkloadEntries inlined could become
      // two Workloads with the following UIDs:
      // - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint1
      // - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint2
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. pkg/config/schema/kubeclient/resources.gen.go

    		return &k8sioapicorev1.Secret{}
    	case gvr.Service:
    		return &k8sioapicorev1.Service{}
    	case gvr.ServiceAccount:
    		return &k8sioapicorev1.ServiceAccount{}
    	case gvr.ServiceEntry:
    		return &apiistioioapinetworkingv1alpha3.ServiceEntry{}
    	case gvr.Sidecar:
    		return &apiistioioapinetworkingv1alpha3.Sidecar{}
    	case gvr.StatefulSet:
    		return &k8sioapiappsv1.StatefulSet{}
    	case gvr.TCPRoute:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/validation.go

    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/validation/agent"
    )
    
    // UnixAddressPrefix is the prefix used to indicate an address is for a Unix Domain socket. It is used in
    // ServiceEntry.Endpoint.Address message.
    const (
    	UnixAddressPrefix          = "unix://"
    	PodIPAddressPrefix         = "0.0.0.0"
    	LocalhostAddressPrefix     = "127.0.0.1"
    	PodIPv6AddressPrefix       = "::"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. pilot/test/xds/fake.go

    	t.Cleanup(s.Shutdown)
    
    	serviceHandler := func(_, curr *model.Service, _ model.Event) {
    		pushReq := &model.PushRequest{
    			Full:           true,
    			ConfigsUpdated: sets.New(model.ConfigKey{Kind: kind.ServiceEntry, Name: string(curr.Hostname), Namespace: curr.Attributes.Namespace}),
    			Reason:         model.NewReasonStats(model.ServiceUpdate),
    		}
    		s.ConfigUpdate(pushReq)
    	}
    
    	if opts.DefaultClusterName == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	// want to index ServiceEntry/WorkloadEntry or possibly allow specifying
    	// the ServiceAccounts directly on a Gateway resource.
    	ServiceAccounts []string
    }
    
    // fetchWaypointForInstance attempts to find a Waypoint a given object is an instance of.
    // TODO should this also lookup waypoints by workload.addresses + workload.services[].vip?
    // ServiceEntry and WorkloadEntry likely won't have the gateway-name label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion_test.go

    		case gvk.TLSRoute:
    			out.TLSRoute = append(out.TLSRoute, c)
    		case gvk.ReferenceGrant:
    			out.ReferenceGrant = append(out.ReferenceGrant, c)
    		case gvk.ServiceEntry:
    			out.ServiceEntry = append(out.ServiceEntry, c)
    		}
    	}
    	out.Namespaces = map[string]*corev1.Namespace{}
    	for ns := range namespaces {
    		out.Namespaces[ns] = &corev1.Namespace{
    			ObjectMeta: metav1.ObjectMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  10. pilot/pkg/xds/bench_test.go

    			})
    		}
    		result = append(result, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind:  gvk.ServiceEntry,
    				Name:              "foo-" + strconv.Itoa(s),
    				Namespace:         "default",
    				CreationTimestamp: time.Now(),
    			},
    			Spec: &networking.ServiceEntry{
    				Hosts: []string{fmt.Sprintf("foo-%d.com", s)},
    				Ports: []*networking.ServicePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top