Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for serviceentry (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/config/schema/metadata.yaml

        statusProto: "istio.meta.v1alpha1.IstioStatus"
        statusProtoPackage: "istio.io/api/meta/v1alpha1"
    
      - kind: "ServiceEntry"
        plural: "serviceentries"
        group: "networking.istio.io"
        version: "v1alpha3"
        versionAliases:
          - "v1beta1"
          - "v1"
        proto: "istio.networking.v1alpha3.ServiceEntry"
        protoPackage: "istio.io/api/networking/v1alpha3"
        statusProto: "istio.meta.v1alpha1.IstioStatus"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. tests/integration/pilot/locality_test.go

    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/tests/integration/pilot/common"
    )
    
    const localityTemplate = `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-service-locality
    spec:
      hosts:
      - {{.Host}}
      location: MESH_EXTERNAL
      ports:
      - name: http
        number: 80
        protocol: HTTP
      resolution: {{.Resolution}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_cache.go

    			configs = append(configs, model.ConfigKey{Kind: kind.DestinationRule, Name: dr.Name, Namespace: dr.Namespace}.HashCode())
    		}
    	}
    	if t.service != nil {
    		configs = append(configs, model.ConfigKey{Kind: kind.ServiceEntry, Name: string(t.service.Hostname), Namespace: t.service.Attributes.Namespace}.HashCode())
    	}
    	for _, efKey := range t.envoyFilterKeys {
    		items := strings.Split(efKey, "/")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/kube/krt/collection_test.go

    			Named:    NewNamed(i),
    			Selector: i.Spec.Selector,
    		}
    	})
    }
    
    func SimpleServiceCollectionFromEntries(entries krt.Collection[*istioclient.ServiceEntry]) krt.Collection[SimpleService] {
    	return krt.NewCollection(entries, func(ctx krt.HandlerContext, i *istioclient.ServiceEntry) *SimpleService {
    		l := i.Spec.WorkloadSelector.GetLabels()
    		if l == nil {
    			return nil
    		}
    		return &SimpleService{
    			Named:    NewNamed(i),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top