Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 205 for ServiceEntry (0.26 sec)

  1. tests/testdata/config/se-example-gw.yaml

    kind: Sidecar
    metadata:
      name: default
      namespace: exampleegressgw
    spec:
      egress:
      - hosts:
          - exampleegressgw/*
    ---
    # Test workload entry
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: workload
      namespace: exampleegressgw
    spec:
      hosts:
      - test.exampleegressgw
    
      ports:
      - number: 1300
        name: tcplocal
        protocol: TCP
    
      location: MESH_INTERNAL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 26 13:51:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  2. tests/testdata/networking/ingress-gateway/configs.yaml

    kind: ServiceEntry
    metadata:
      name: BACKEND
      namespace: istio-system
    spec:
      hosts:
      - https.secure.com
      addresses:
      - 1.1.1.2
      ports:
      - number: 15004
        name: HTTPS
        protocol: https
      location: MESH_INTERNAL
      resolution: STATIC
      endpoints:
      - address: 1.2.3.4
      exportTo:
      - '*'
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 28 15:04:31 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  3. 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)
  4. pkg/config/analysis/analyzers/virtualservice/destinationhosts.go

    		Inputs: []config.GroupVersionKind{
    			gvk.ServiceEntry,
    			gvk.VirtualService,
    			gvk.Service,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (a *DestinationHostAnalyzer) Analyze(ctx analysis.Context) {
    	// Precompute the set of service entry hosts that exist (there can be more than one defined per ServiceEntry CRD)
    	serviceEntryHosts := util.InitServiceEntryHostMap(ctx)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/benchmarks/gateways.yaml

    # Set up a Service associated with our proxy, which will run as 1.1.1.1 IP
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
      - example.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      - number: 443
        name: https
        protocol: HTTPS
      resolution: STATIC
      endpoints:
      - address: 1.1.1.1
        labels:
          istio.io/benchmark: "true"
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 03 15:29:41 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/apigen/apigen_test.go

    		err := adscConn.Run()
    		if err != nil {
    			t.Fatal("ADSC: failed running ", err)
    		}
    
    		_, err = adscConn.WaitVersion(10*time.Second, gvk.ServiceEntry.String(), "")
    		if err != nil {
    			t.Fatal("Failed to receive lds", err)
    		}
    
    		ses := adscConn.Store.List(gvk.ServiceEntry, "")
    		for _, se := range ses {
    			t.Log(se)
    		}
    		sec := adscConn.Store.List(gvk.EnvoyFilter, "")
    		for _, se := range sec {
    			t.Log(se)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. samples/extauthz/local-ext-authz.yaml

    # Define the service entry for the local ext-authz service on port 8000.
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: httpbin-ext-authz-http
    spec:
      hosts:
      - "ext-authz-http.local"
      endpoints:
      - address: "127.0.0.1"
      ports:
      - name: http
        number: 8000
        protocol: HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 03:54:58 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. releasenotes/notes/38833.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 08 13:44:00 UTC 2022
    - 229 bytes
    - Viewed (0)
  9. tests/testdata/networking/sidecar-without-service/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: 8081
        name: http
        protocol: HTTP2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  10. releasenotes/notes/25678.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 25678
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 224 bytes
    - Viewed (0)
Back to top