Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 207 for serviceentry (0.18 sec)

  1. tests/testdata/config/external_services.yaml

    ---
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-svc-dst
      namespace: testns
    spec:
       hosts:
       - dst.extsvc.com
    #   - *.dst2.extsvc.com
       ports:
       - number: 8001
         name: extsvc-http
         protocol: HTTP
       resolution: NONE
    
    ---
    
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-svc-ep
      namespace: testns
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  2. releasenotes/notes/targetPort-service-entry.yaml

    area: traffic-management
    releaseNotes:
      - |
        **Improved** `ServiceEntry` with `resolution: NONE` to respect `targetPort`, if specified.
        This is particularly useful when doing TLS origination, allowing to set `port:80, targetPort: 443`.
        If undesired set `--compatibilityVersion=1.21` to revert to the old behavior, or remove the `targetPort` specification.
    upgradeNotes:
      - title: "`ServiceEntry` with `resolution: NONE` now respects `targetPort`"
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 794 bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/util_test.go

    // limitations under the License.
    
    package serviceentry
    
    import (
    	"reflect"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/types"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    func TestGetWorkloadServiceEntries(t *testing.T) {
    	se1 := config.Config{
    		Meta: config.Meta{GroupVersionKind: gvk.ServiceEntry, Namespace: "default", Name: "se-1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 17 22:32:10 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. samples/external/pypi.yaml

    # This ServiceEntry exposes the hosts needed for Python `pip`.
    # After applying this file, Istio-enabled pods will be able to execute
    # `pip search istio`.
    
    # HTTP and TLS, the host must be specified
    # See https://istio.io/docs/tasks/traffic-management/egress/
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: python-https
    spec:
      hosts:
      - pypi.python.org
      ports:
      - number: 443
        name: https
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 28 20:28:21 UTC 2019
    - 962 bytes
    - Viewed (0)
  5. pilot/pkg/config/memory/store_test.go

    				Version: "v1alpha3",
    				Kind:    "ServiceEntry",
    			},
    			Namespace: "ns",
    		},
    		Spec: &v1alpha3.ServiceEntry{
    			Hosts: []string{"www.foo.com"},
    		},
    	}
    	for n := 0; n < b.N; n++ {
    		b.StopTimer()
    		s := initStore(b)
    		b.StartTimer()
    		// update one thousand times
    		for i := 0; i < 1000; i++ {
    			cfg.Name = strconv.Itoa(i)
    			cfg.Spec.(*v1alpha3.ServiceEntry).Hosts[0] = cfg.Name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. samples/external/github.yaml

    # This ServiceEntry exposes the hosts needed for github.com.
    # After applying this file, Istio-enabled pods will be able to execute
    # `git clone https://github.com/istio/api.git` and (with local identification
    # config and certificate) `git clone ******@****.***:istio/api.git`
    
    # HTTP and TLS, the host must be specified
    # See https://istio.io/docs/tasks/traffic-management/egress/
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 28 20:28:21 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  7. tests/testdata/networking/sidecar-ns-scope/configs.yaml

      namespace: istio-config
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    ---
    # Services and configs in ns1 namespace
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: http1
      namespace: ns1
    spec:
      hosts:
      - http1.ns1.svc.cluster.local
      addresses:
      - 2.1.1.1
      ports:
      - number: 8080
        name: http
        protocol: HTTP2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. pkg/config/schema/kind/resources.gen.go

    	case RequestAuthentication:
    		return "RequestAuthentication"
    	case Secret:
    		return "Secret"
    	case Service:
    		return "Service"
    	case ServiceAccount:
    		return "ServiceAccount"
    	case ServiceEntry:
    		return "ServiceEntry"
    	case Sidecar:
    		return "Sidecar"
    	case StatefulSet:
    		return "StatefulSet"
    	case TCPRoute:
    		return "TCPRoute"
    	case TLSRoute:
    		return "TLSRoute"
    	case Telemetry:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. releasenotes/notes/44159.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
        **Fixed** an issue where ServiceEntry and Service had undefined or empty workload selectors. If the workload selector is undefined or empty, 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 07 04:26:56 UTC 2023
    - 312 bytes
    - Viewed (0)
  10. tests/testdata/config/none.yaml

    # Not supported/require iptables:
    # - TCP with 'addresses' field - needs iptables
    # - resolution:NONE - 'original DST' - external services (for example https, ServiceEntry+address), stateful sets
    # - TCP with resolution:DNS - same issue
    # -
    
    # Local ServiceEntry (meshex, test) - the tests will use the IPs defined in the service when connecting.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
Back to top