Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 268 for egcbss (0.2 sec)

  1. tests/testdata/config/rule-route-via-egressgateway.yaml

      gateways:
      # Pinned to both the sidecars (mesh) and egress gateway
      - istio-egressgateway
      - mesh
      http:
        - match:
          - gateways:
            - mesh # from sidecars, route to egress gateway service
          route:
          - destination:
              host: istio-egressgateway
            weight: 100
        - match:
          - gateways: # from egress gateway, route to actual external service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 735 bytes
    - Viewed (0)
  2. src/runtime/norace_test.go

    func BenchmarkSyscallExcess(b *testing.B) {
    	benchmarkSyscall(b, 0, 4)
    }
    
    func BenchmarkSyscallExcessWork(b *testing.B) {
    	benchmarkSyscall(b, 100, 4)
    }
    
    func benchmarkSyscall(b *testing.B, work, excess int) {
    	b.SetParallelism(excess)
    	b.RunParallel(func(pb *testing.PB) {
    		foo := 42
    		for pb.Next() {
    			runtime.Entersyscall()
    			for i := 0; i < work; i++ {
    				foo *= 2
    				foo /= 2
    			}
    			runtime.Exitsyscall()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 983 bytes
    - Viewed (0)
  3. samples/external/github.yaml

    # 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:
      name: github-https
    spec:
      hosts:
      - github.com
      ports:
      - number: 443
        name: https
        protocol: HTTPS
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 28 20:28:21 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/tunneling/gateway/tcp/virtual-service.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: mesh-route-outbound-traffic-to-external-svc-via-egress-gw
    spec:
      hosts:
      - external.{{ .externalNamespace }}.svc.cluster.local
      gateways:
      - mesh
      tcp:
      - match:
        - port: {{ .externalSvcTcpPort }}
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. manifests/charts/gateway/README.md

    ### Examples
    
    #### Egress Gateway
    
    Deploying a Gateway to be used as an [Egress Gateway](https://istio.io/latest/docs/tasks/traffic-management/egress/egress-gateway/):
    
    ```yaml
    service:
      # Egress gateways do not need an external LoadBalancer IP
      type: ClusterIP
    ```
    
    #### Multi-network/VM Gateway
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar.go

    	// Version this sidecar was computed for
    	Version string
    
    	// Set of egress listeners, and their associated services.  A sidecar
    	// scope should have either ingress/egress listeners or both.  For
    	// every proxy workload that maps to a sidecar API object (or the
    	// default object), we will go through every egress listener in the
    	// object and process the Envoy listener or RDS based on the imported
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  7. tests/testdata/config/se-example-gw.yaml

    #The following example demonstrates the use of a dedicated egress gateway
    #through which all external service traffic is forwarded.
    
    
    # Sidecar - no imports defined, isolated namespace.
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: default
      namespace: exampleegressgw
    spec:
      egress:
      - hosts:
          - exampleegressgw/*
    ---
    # Test workload entry
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 26 13:51:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  8. cluster/addons/dns/nodelocaldns/README.md

    Using a namespace selector for dns egress traffic as shown [here](https://docs.projectcalico.org/security/tutorials/kubernetes-policy-advanced)
    might not be enough since the node-local-dns pods run with `hostNetwork: True`
    
    One way to enable connectivity from node-local-dns pods to clusterDNS ip is to use an ipBlock rule instead:
    
    ```
    spec:
      egress:
      - ports:
        - port: 53
          protocol: TCP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1/types.go

    	// +optional
    	// +listType=atomic
    	Egress []NetworkPolicyEgressRule `json:"egress,omitempty" protobuf:"bytes,3,rep,name=egress"`
    
    	// policyTypes is a list of rule types that the NetworkPolicy relates to.
    	// Valid options are ["Ingress"], ["Egress"], or ["Ingress", "Egress"].
    	// If this field is not specified, it will default based on the existence of ingress or egress rules;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. pkg/apis/networking/types.go

    	// This field is beta-level in 1.8
    	// +optional
    	Egress []NetworkPolicyEgressRule
    
    	// policyTypes is a list of rule types that the NetworkPolicy relates to.
    	// Valid options are ["Ingress"], ["Egress"], or ["Ingress", "Egress"].
    	// If this field is not specified, it will default based on the existence of ingress or egress rules;
    	// policies that contain an egress section are assumed to affect egress, and all policies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
Back to top