Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for serviceentry (0.18 sec)

  1. pkg/config/schema/gvk/resources.gen.go

    	ServiceEntry                   = config.GroupVersionKind{Group: "networking.istio.io", Version: "v1alpha3", Kind: "ServiceEntry"}
    	ServiceEntry_v1beta1           = config.GroupVersionKind{Group: "networking.istio.io", Version: "v1beta1", Kind: "ServiceEntry"}
    	ServiceEntry_v1                = config.GroupVersionKind{Group: "networking.istio.io", Version: "v1", Kind: "ServiceEntry"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    		name   string
    		inputs []any
    		se     *networkingclient.ServiceEntry
    		result []*workloadapi.Workload
    	}{
    		{
    			name:   "dns without endpoints",
    			inputs: []any{},
    			se: &networkingclient.ServiceEntry{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    				},
    				Spec: networking.ServiceEntry{
    					Addresses: []string{"1.2.3.4"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_simulation_test.go

    hosts:
    - "example.com"
    `) + createGateway("gateway8081", "", `
    port:
      number: 8081
      name: http
      protocol: HTTP
    hosts:
    - "example.com"
    `) + `
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-instance
      namespace: istio-system
      labels:
        experimental.istio.io/disable-gateway-port-translation: "true"
    spec:
      hosts: ["a.example.com"]
      ports:
      - number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  4. pkg/config/schema/collections/collections.gen.go

    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	ServiceEntry = resource.Builder{
    		Identifier: "ServiceEntry",
    		Group:      "networking.istio.io",
    		Kind:       "ServiceEntry",
    		Plural:     "serviceentries",
    		Version:    "v1alpha3",
    		VersionAliases: []string{
    			"v1beta1",
    			"v1",
    		},
    		Proto: "istio.networking.v1alpha3.ServiceEntry", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  5. tests/integration/telemetry/policy/helper_test.go

    	"istio.io/istio/pkg/test/util/tmpl"
    	util "istio.io/istio/tests/integration/telemetry"
    )
    
    const (
    	// ServiceEntry is used to create conflicts on various ports
    	// As defined below, the tcp-conflict and https-conflict ports are 9443 and 9091
    	ServiceEntry = `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: http
    spec:
      hosts:
      - istio.io
      location: MESH_EXTERNAL
      ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    	Waypoints krt.Collection[Waypoint],
    	Namespaces krt.Collection[*v1.Namespace],
    ) krt.TransformationMulti[*networkingclient.ServiceEntry, model.WorkloadInfo] {
    	return func(ctx krt.HandlerContext, se *networkingclient.ServiceEntry) []model.WorkloadInfo {
    		eps := se.Spec.Endpoints
    		// If we have a DNS service, endpoints are not required
    		implicitEndpoints := len(eps) == 0 &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{
    			"testdata/serviceentry-missing-addresses-protocol.yaml",
    		},
    		analyzer: &serviceentry.ProtocolAddressesAnalyzer{},
    		expected: []message{
    			{msg.ServiceEntryAddressesRequired, "ServiceEntry default/service-entry-test-03"},
    			{msg.ServiceEntryAddressesRequired, "ServiceEntry default/service-entry-test-04"},
    			{msg.ServiceEntryAddressesRequired, "ServiceEntry default/service-entry-test-07"},
    		},
    	},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. pkg/adsc/adsc_test.go

    			adsc.handleMCP(gvk.ServiceEntry, tt.resources)
    			configs := adsc.Store.List(gvk.ServiceEntry, "")
    			if len(configs) != len(tt.expectedResources) {
    				t.Errorf("expected %v got %v", len(tt.expectedResources), len(configs))
    			}
    			configMap := make(map[string][]string)
    			for _, conf := range configs {
    				service, _ := conf.Spec.(*networking.ServiceEntry)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/controller.go

    	tcpRoute := c.cache.List(gvk.TCPRoute, metav1.NamespaceAll)
    	tlsRoute := c.cache.List(gvk.TLSRoute, metav1.NamespaceAll)
    	referenceGrant := c.cache.List(gvk.ReferenceGrant, metav1.NamespaceAll)
    	serviceEntry := c.cache.List(gvk.ServiceEntry, metav1.NamespaceAll) // TODO lazy load only referenced SEs?
    
    	input := GatewayResources{
    		GatewayClass:   deepCopyStatus(gatewayClass),
    		Gateway:        deepCopyStatus(gateway),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. pilot/pkg/xds/lds_test.go

    				if os.Getenv("CONFIG_DIFF") == "1" {
    					t.Logf("error in golden file %s %v", s, err)
    				}
    			}
    		}
    	})
    
    	// Test for the examples in the ServiceEntry doc
    	t.Run("se_example", func(t *testing.T) {
    		// TODO: add a Service with EDS resolution in the none ns.
    		// The ServiceEntry only allows STATIC - both STATIC and EDS should generated TCP listeners on :port
    		// while DNS and NONE should generate old-style bind ports.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top