Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for serviceentry (0.26 sec)

  1. 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)
  2. pilot/pkg/xds/ads_test.go

    		return config.Config{
    			Meta: config.Meta{
    				Name:             "service",
    				Namespace:        "default",
    				GroupVersionKind: gvk.ServiceEntry,
    			},
    			Spec: &networking.ServiceEntry{
    				Hosts: []string{"foo.com"},
    				Ports: []*networking.ServicePort{{
    					Number:   80,
    					Protocol: "HTTP",
    					Name:     "http",
    				}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. pkg/config/schema/gvr/resources.gen.go

    	Service                        = schema.GroupVersionResource{Group: "", Version: "v1", Resource: "services"}
    	ServiceAccount                 = schema.GroupVersionResource{Group: "", Version: "v1", Resource: "serviceaccounts"}
    	ServiceEntry                   = schema.GroupVersionResource{Group: "networking.istio.io", Version: "v1alpha3", Resource: "serviceentries"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pilot/pkg/xds/mesh_network_test.go

      namespace: test
    spec:
      ports:
      - port: 80
        protocol: TCP
      selector:
        app: remote-we-svc
    `,
    		},
    		{
    			name: "ServiceEntry",
    			cfg: `
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: remote-we-svc
      namespace: test
    spec:
      hosts:
      - remote-we-svc
      ports:
        - number: 80
          name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. architecture/networking/pilot.md

    ```mermaid
    graph TD
        subgraph Kube Controller
            s(Services)
            e(Endpoints)
            p(Pods)
            ksi(ServiceInstances)
            kwi(WorkloadInstances)
            s-->ksi
            e-->ksi
            p-->kwi
        end
        subgraph ServiceEntry Controller
            se(ServiceEntry)
            we(WorkloadEntry)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. 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)
  10. pilot/pkg/xds/eds_test.go

    		}
    	})
    	t.Run("Incremental Push with updated services", func(t *testing.T) {
    		ads.WaitClear()
    		s.Discovery.Push(&model.PushRequest{
    			Full:           false,
    			ConfigsUpdated: sets.New(model.ConfigKey{Kind: kind.ServiceEntry, Name: "destall.default.svc.cluster.local", Namespace: "testns"}),
    		})
    		if err := ads.WaitSingle(time.Second*5, v3.EndpointType, v3.ClusterType); err != nil {
    			t.Fatal(err)
    		}
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top