Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 122 for serviceentry (0.21 sec)

  1. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml

    spec:
      parentRefs:
      - kind: ServiceEntry
        group: networking.istio.io
        name: egress
      rules:
      - backendRefs:
        - kind: Hostname
          group: networking.istio.io
          name: google.com
          port: 443
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: egress
      namespace: default
    spec:
      parentRefs:
      - kind: ServiceEntry
        group: networking.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/serviceentry.status.yaml.golden

          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
          group: networking.istio.io
          kind: ServiceEntry
          name: egress
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http
      namespace: default
    spec: null
    status:
      parents:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml.golden

    Frank Budinsky <******@****.***> 1705689588 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. pkg/test/datasets/validation/dataset/networking-v1-ServiceEntry.yaml

    apiVersion: networking.istio.io/v1
    kind: ServiceEntry
    metadata:
      name: valid-service-entry
    spec:
      hosts:
      - eu.bookinfo.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: DNS
      endpoints:
      # Rather than relying on an external host that might become unreachable (causing test failures)
      # we can mock the external endpoint using service t which has no sidecar.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 506 bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/conversion.go

    	serviceEntry := cfg.Spec.(*networking.ServiceEntry)
    	if serviceEntry == nil {
    		return nil
    	}
    	if services == nil {
    		services = convertServices(cfg)
    	}
    
    	endpointsNum := len(serviceEntry.Endpoints)
    	hostnameToServiceInstance := false
    	if len(serviceEntry.Endpoints) == 0 && serviceEntry.WorkloadSelector == nil && isDNSTypeServiceEntry(serviceEntry) {
    		hostnameToServiceInstance = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    				makeInstance(httpStatic, "2.2.2.2", 18080, httpStatic.Spec.(*networking.ServiceEntry).Ports[1], nil, MTLS),
    				makeInstance(httpStatic, "3.3.3.3", 1080, httpStatic.Spec.(*networking.ServiceEntry).Ports[0], nil, MTLS),
    				makeInstance(httpStatic, "3.3.3.3", 8080, httpStatic.Spec.(*networking.ServiceEntry).Ports[1], nil, MTLS),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		makeInstance(httpStatic, "2.2.2.2", 18080, httpStatic.Spec.(*networking.ServiceEntry).Ports[1], nil, MTLS),
    		makeInstance(httpStatic, "3.3.3.3", 1080, httpStatic.Spec.(*networking.ServiceEntry).Ports[0], nil, MTLS),
    		makeInstance(httpStatic, "3.3.3.3", 8080, httpStatic.Spec.(*networking.ServiceEntry).Ports[1], nil, MTLS),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/store_test.go

    	}
    	instances := []*model.ServiceInstance{
    		makeInstance(selector, "1.1.1.1", 444, selector.Spec.(*networking.ServiceEntry).Ports[0], nil, PlainText),
    		makeInstance(selector, "1.1.1.1", 445, selector.Spec.(*networking.ServiceEntry).Ports[1], nil, PlainText),
    		makeInstance(dnsSelector, "1.1.1.1", 444, dnsSelector.Spec.(*networking.ServiceEntry).Ports[0], nil, PlainText),
    	}
    	cKey := configKey{
    		namespace: "default",
    		name:      "test-wle",
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceregistry_test.go

    	})
    
    	t.Run("External only: the port name of the workloadEntry and serviceEntry does not match, "+
    		"and the serivceEntry target port is not set, use serviceEntry port.number", func(t *testing.T) {
    		store, _, fx := setupTest(t)
    		makeIstioObject(t, store, serviceEntry)
    		makeIstioObject(t, store, config.Config{
    			Meta: config.Meta{
    				Name:             "workload",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. pilot/pkg/xds/cds_test.go

    			}},
    		},
    	}
    	seEDS := config.Config{
    		Meta: config.Meta{
    			Name:             "service-entry",
    			Namespace:        "test",
    			GroupVersionKind: gvk.ServiceEntry,
    			Domain:           "cluster.local",
    		},
    		Spec: &networking.ServiceEntry{
    			Hosts: []string{"example.default.svc.cluster.local"},
    			Ports: []*networking.ServicePort{{
    				Number:   80,
    				Protocol: "HTTP",
    				Name:     "http",
    			}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top