Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sniHosts (0.1 sec)

  1. pilot/pkg/networking/core/tls.go

    			sniHosts = []string{string(service.Hostname)}
    			for _, a := range service.Attributes.Aliases {
    				alt := GenerateAltVirtualHosts(a.Hostname.String(), 0, node.DNSDomain)
    				sniHosts = append(sniHosts, a.Hostname.String())
    				sniHosts = append(sniHosts, alt...)
    			}
    		}
    		destinationRule := CastDestinationRule(node.SidecarScope.DestinationRule(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway.go

    		// and that no two non-HTTPS servers can be on same port or share port names.
    		// Validation is done per gateway and also during merging
    		sniHosts:   node.MergedGateway.TLSServerInfo[server].SNIHosts,
    		tlsContext: buildGatewayListenerTLSContext(push.Mesh, server, node, transportProtocol),
    		httpOpts: &httpListenerOpts{
    			rds:                       routeName,
    			useRemoteAddress:          true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway.go

    	}
    	// sanitize the server hosts as it could contain hosts of form ns/host
    	sniHosts := sets.String{}
    	for _, h := range server.Hosts {
    		if strings.Contains(h, "/") {
    			parts := strings.Split(h, "/")
    			h = parts[1]
    		}
    		// do not add hosts, that have already been added
    		sniHosts.Insert(h)
    	}
    	return sets.SortedList(sniHosts)
    }
    
    // CheckDuplicates returns all of the hosts provided that are already known
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. 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)
Back to top