Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for dnsNames (0.13 sec)

  1. src/crypto/tls/handshake_client.go

    				c.sendAlert(alertBadCertificate)
    				return err
    			}
    		} else {
    			opts := x509.VerifyOptions{
    				Roots:         c.config.RootCAs,
    				CurrentTime:   c.config.time(),
    				DNSName:       c.serverName,
    				Intermediates: x509.NewCertPool(),
    			}
    
    			for _, cert := range certs[1:] {
    				opts.Intermediates.AddCert(cert)
    			}
    			var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  2. cluster/gce/windows/smoke-test.sh

      local service_ip
      service_ip=$($kubectl get service --namespace kube-system $service \
        -o jsonpath='{.spec.clusterIP}')
    
      if ! $kubectl exec "$windows_command_pod" -- powershell.exe \
          "Resolve-DnsName www.bing.com -server $service_ip" > $output_file; then
        cleanup_deployments
        echo "Failing output: $(cat $output_file)"
        echo "FAILED: ${FUNCNAME[0]}"
        exit 1
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    		} else {
    			// pure HTTP headless services should not need a full push since they do not
    			// require a Listener based on IP: https://github.com/istio/istio/issues/48207
    			configsUpdated.Insert(model.ConfigKey{Kind: kind.DNSName, Name: config.Name, Namespace: config.Namespace})
    		}
    	}
    
    	if len(configsUpdated) > 0 {
    		// For headless services, trigger a full push.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar.go

    	for _, h := range istioListener.Hosts {
    		parts := strings.SplitN(h, "/", 2)
    		if len(parts) < 2 {
    			log.Errorf("Illegal host in sidecar resource: %s, host must be of form namespace/dnsName", h)
    			continue
    		}
    		if parts[0] == currentNamespace {
    			parts[0] = configNamespace
    		}
    
    		ns := parts[0]
    		hName := host.Name(parts[1])
    		if _, exists := hostsByNamespace[ns]; !exists {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top