Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for GW (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/traffic-splitting/traffic-split-1.yaml

    #$ Used in:
    #$ - site-src/guides/traffic-splitting.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: foo-route
      labels:
        gateway: prod-web-gw
    spec:
      hostnames:
      - foo.example.com
      rules:
      - backendRefs:
        - name: foo-v1
          port: 8080
      - matches:
        - headers:
          - name: traffic
            value: test
        backendRefs:
        - name: foo-v2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 403 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-request-header-set.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: header-http-echo
    spec:
      parentRefs:
        - name: acme-gw
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /edit-a-request-header
          filters:
            - type: RequestHeaderModifier
              requestHeaderModifier:
                set:
                  - name: my-header-name
                    value: my-new-header-value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 492 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/traffic-splitting/traffic-split-2.yaml

    #$ Used in:
    #$ - site-src/guides/traffic-splitting.md
    #$ - site-src/api-types/httproute.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: foo-route
      labels:
        gateway: prod-web-gw
    spec:
      hostnames:
      - foo.example.com
      rules:
      - backendRefs:
        - name: foo-v1
          port: 8080
          weight: 90
        - name: foo-v2
          port: 8080
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 387 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-method.yaml

    #$ Used in:
    #$ - geps/gep-1748.md
    kind: HTTPRoute
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
      name: api
    spec:
      parentRefs:
      - name: api-gw
      rules:
      - matches:
        - method: POST
        - method: PUT
        - method: DELETE
        backendRefs:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: api-primary
          port: 8080
      - backendRefs:
        - group: multicluster.x-k8s.io
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 474 bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/virtualservice/jwtclaimroute.go

    		gwRes := c.Find(gvk.Gateway, gwFullName)
    		if gwRes == nil {
    			// The gateway does not exist, this should already be covered by the gateway analyzer.
    			continue
    		}
    
    		gw := gwRes.Message.(*v1alpha3.Gateway)
    		gwSelector := klabels.SelectorFromSet(gw.Selector)
    
    		// Check each pod selected by the gateway.
    		c.ForEach(gvk.Pod, func(rPod *resource.Instance) bool {
    			podLabels := klabels.Set(rPod.Metadata.Labels)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. tests/integration/pilot/analysis/analysis_test.go

    				Prefix: "default",
    				Inject: true,
    			})
    			t.ConfigIstio().YAML(ns.Name(), `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
    spec:
      gateways: [missing-gw]
      hosts:
      - reviews
      http:
      - route:
        - destination:
            host: reviews
    `).ApplyOrFail(t)
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{Cluster: t.Clusters().Default()})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway_test.go

    }
    
    func makeConfig(name, namespace, host, portName, portProtocol string, portNumber uint32, gw string, bind string,
    	mode networking.ServerTLSSettings_TLSmode,
    ) config.Config {
    	c := config.Config{
    		Meta: config.Meta{
    			Name:      name,
    			Namespace: namespace,
    		},
    		Spec: &networking.Gateway{
    			Selector: map[string]string{"istio": gw},
    			Servers: []*networking.Server{
    				{
    					Hosts: []string{host},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. tests/integration/security/filebased_tls_origination/main_test.go

    components:
      egressGateways:
      - enabled: true
        name: istio-egressgateway
    values:
       gateways:
          istio-egressgateway:
             secretVolumes:
             - name: client-custom-certs
               secretName: egress-gw-cacerts
               mountPath: /etc/certs/custom
    {{- end }}
    `, map[string]bool{"isExternalControlPlane": ctx.AllClusters().IsExternalControlPlane()})
    
    	cfg.GatewayValues = `
    components:
      egressGateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. pilot/pkg/model/network_test.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    func TestGatewayHostnames(t *testing.T) {
    	test.SetForTest(t, &model.MinGatewayTTL, 30*time.Millisecond)
    	ttl := uint32(0) // second
    
    	gwHost := "test.gw.istio.io"
    	workingDNSServer := newFakeDNSServer(ttl, sets.New(gwHost))
    	failingDNSServer := newFakeDNSServer(ttl, sets.NewWithLength[string](0))
    	failingDNSServer.setFailure(true)
    	model.NetworkGatewayTestDNSServers = []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv12-Resume

    00000040  2c f8 15 c3 90 15 03 03  00 30 00 00 00 00 00 00  |,........0......|
    00000050  00 00 00 00 00 00 00 00  00 00 c6 58 8e 7c 97 de  |...........X.|..|
    00000060  3b b8 39 cd 7b 1d 67 77  27 da 93 39 52 a7 81 9b  |;.9.{.gw'..9R...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top