Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for PortForName (0.19 sec)

  1. tests/integration/ambient/testdata/gateway-api.yaml

    spec:
      parentRefs:
      - name: {{ .To.ServiceName }}-gateway
      hostnames:
      - "*.{{ .To.ServiceName }}.com"
      rules:
      - backendRefs:
        - name: "{{ .To.ServiceName }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 574 bytes
    - Viewed (0)
  2. tests/integration/security/testdata/requestauthn/ingress.yaml.tmpl

      - "*.{{ .To.ServiceName }}.com"
      gateways:
      - {{ .To.ServiceName }}-gateway
      http:
      - route:
        - destination:
            host: "{{ .To.ClusterLocalFQDN }}"
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 30 17:55:53 UTC 2023
    - 676 bytes
    - Viewed (0)
  3. tests/integration/security/testdata/authz/conditions.yaml.tmpl

          values: [ "{{ ( .To.PortForName `http` ).WorkloadPort }}" ]
      - to:
        - operation:
            paths: [ "/destination-port-bad" ]
        when:
        - key: destination.port
          values: [ "1" ]
      - to:
          - operation:
              paths: [ "/destination-port-notValues" ]
        when:
          - key: destination.port
            notValues: [ "{{ ( .To.PortForName `http` ).WorkloadPort }}" ]
    ---
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. tests/integration/security/testdata/requestauthn/gateway-api.yaml.tmpl

    spec:
      parentRefs:
      - name: {{ .To.ServiceName }}-gateway
      hostnames:
      - "*.{{ .To.ServiceName }}.com"
      rules:
      - backendRefs:
        - name: "{{ .To.ServiceName }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 574 bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/testdata/gateway-api.yaml

    spec:
      parentRefs:
      - name: {{ .To.ServiceName }}-gateway
      hostnames:
      - "*.{{ .To.ServiceName }}.com"
      rules:
      - backendRefs:
        - name: "{{ .To.ServiceName }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:48:31 UTC 2023
    - 574 bytes
    - Viewed (0)
  6. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

            - gateways:
                - test-egress
              port: 80
          route:
            - destination:
                host: "{{ .To.ClusterLocalFQDN }}"
                port:
                  number: {{ (.To.PortForName "http").ServicePort }}
              weight: 100
          headers:
            request:
              add:
                x-egress-test: "handled-by-egress-gateway"
    ---
    apiVersion: networking.istio.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. tests/integration/security/testdata/authz/not-host.yaml.tmpl

      gateways:
        - gw-{{ .To.ServiceName }}
      http:
        - route:
            - destination:
                host: "{{ .To.ClusterLocalFQDN }}"
                port:
                  number: {{ (.To.PortForName "http").ServicePort }}
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: allow-{{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. tests/integration/security/testdata/authz/ingress-gateway.yaml.tmpl

      hosts:
      - "*.{{ .To.ServiceName }}.com"
      gateways:
      - gw-{{ .To.ServiceName }}
      http:
      - route:
        - destination:
            host: "{{ .To.ClusterLocalFQDN }}"
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/match/matchers_test.go

    }
    
    func (f fakeInstance) ID() resource.ID {
    	panic("implement me")
    }
    
    func (f fakeInstance) NamespacedName() echo.NamespacedName {
    	return f.Config().NamespacedName()
    }
    
    func (f fakeInstance) PortForName(name string) echo.Port {
    	return f.Config().Ports.MustForName(name)
    }
    
    func (f fakeInstance) Config() echo.Config {
    	cfg := echo.Config(f)
    	_ = cfg.FillDefaults(nil)
    	return cfg
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/instances.go

    func (i Instances) ClusterSetLocalFQDN() string {
    	return i.Config().ClusterSetLocalFQDN()
    }
    
    func (i Instances) NamespacedName() NamespacedName {
    	return i.Config().NamespacedName()
    }
    
    func (i Instances) PortForName(name string) Port {
    	return i.Config().Ports.MustForName(name)
    }
    
    func (i Instances) Config() Config {
    	return i.mustGetFirst().Config()
    }
    
    func (i Instances) Instances() Instances {
    	return i
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top