Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for sniHosts (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top