Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for sniHosts (0.18 sec)

  1. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

      creationTimestamp: null
      name: tls-tls-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - echo-1.default.svc.domain.suffix
      tls:
      - match:
        - sniHosts:
          - echo-1.default.svc.domain.suffix
        route:
        - destination:
            host: echo.default.svc.domain.suffix
            port:
              number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_simulation_test.go

    kind: VirtualService
    metadata:
      name: vs1
      namespace: default
    spec:
      gateways:
      - istio-system/ingressgateway
      hosts:
      - mysite.example.com
      tls:
      - match:
        - port: 443
          sniHosts:
          - mysite.example.com
        route:
        - destination:
            host: mysite.default.svc.cluster.local
            port:
              number: 443
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    			Tls: []*networking.TLSRoute{
    				{
    					Match: []*networking.TLSMatchAttributes{
    						{
    							DestinationSubnets: []string{"10.10.0.0/24", "11.10.0.0/24"},
    							Port:               8080,
    							SniHosts:           []string{"a", "b", "c"},
    						},
    					},
    					Route: []*networking.RouteDestination{
    						{
    							Destination: &networking.Destination{
    								Host: "test.org",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    		{name: "missing tls route", in: &networking.VirtualService{
    			Hosts: []string{"foo.bar"},
    			Tls: []*networking.TLSRoute{{
    				Match: []*networking.TLSMatchAttributes{
    					{
    						Port:     999,
    						SniHosts: []string{"foo.bar"},
    					},
    				},
    			}},
    		}, valid: false},
    		{name: "deprecated mirror", in: &networking.VirtualService{
    			Hosts:    []string{"foo.bar"},
    			Gateways: []string{"ns1/gateway"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		errs = AppendValidation(errs, errors.New("TLS match may not be null"))
    		return
    	}
    	if len(match.SniHosts) == 0 {
    		errs = AppendValidation(errs, fmt.Errorf("TLS match must have at least one SNI host"))
    	} else {
    		for _, sniHost := range match.SniHosts {
    			errs = AppendValidation(errs, validateSniHost(sniHost, context))
    		}
    	}
    
    	for _, destinationSubnet := range match.DestinationSubnets {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  addressed.
                                maximum: 4294967295
                                minimum: 0
                                type: integer
                              sniHosts:
                                description: SNI (server name indicator) to match on.
                                items:
                                  type: string
                                type: array
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

                                  addressed.
                                maximum: 4294967295
                                minimum: 0
                                type: integer
                              sniHosts:
                                description: SNI (server name indicator) to match on.
                                items:
                                  type: string
                                type: array
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                description: Specifies the port on the host that is being
                                  addressed.
                                type: integer
                              sniHosts:
                                description: SNI (server name indicator) to match on.
                                items:
                                  type: string
                                type: array
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    with optional subnet. items: type: string type: array gateways: description: Names of gateways where the rule should be applied. items: type: string type: array port: description: Specifies the port on the host that is being addressed. type: integer sniHosts: description: SNI (server name indicator) to match on. items: type: string type: array sourceLabels: additionalProperties: type: string description: One or more labels that constrain the applicability of a rule to workloads with the given labels....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top