Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for Fqdn (0.04 sec)

  1. pkg/test/framework/components/echo/deployment/flags.go

    type configs []echo.Config
    
    var _ config.Value = &configs{}
    
    func (c *configs) String() string {
    	buf := &bytes.Buffer{}
    	for _, cc := range *c {
    		_, _ = fmt.Fprintf(buf, "FQDN:     %s\n", cc.ClusterLocalFQDN())
    		_, _ = fmt.Fprintf(buf, "Headless: %v\n", cc.Headless)
    		_, _ = fmt.Fprintf(buf, "VM:       %v\n", cc.DeployAsVM)
    		if cc.DeployAsVM {
    			_, _ = fmt.Fprintf(buf, "VMDistro: %s\n", cc.VMDistro)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. pkg/test/echo/server/endpoint/grpc.go

    	} else {
    		epLog.Infof("ready for GRPC endpoint %s", listener.Addr().String())
    	}
    }
    
    // TODO (hack) we have to send certs OR use xds:///fqdn. We don't know our own fqdn, and even if we did
    // we could send traffic to another instance. Instead we look into gRPC internals to authenticate with ourself.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 17:30:37 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. pilot/pkg/xds/proxy_dependencies.go

    			return true
    		}
    	case model.Router:
    		if config.Kind == kind.ServiceEntry {
    			// If config is ServiceEntry, name of the config is service's FQDN
    			if features.FilterGatewayClusterConfig && !push.ServiceAttachedToGateway(config.Name, proxy) {
    				return false
    			}
    
    			hostname := host.Name(config.Name)
    			// gateways have default sidecar scopes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/instances.go

    		for _, thisI := range i {
    			if thisI == thatI {
    				found = true
    				break
    			}
    		}
    		if !found {
    			return false
    		}
    	}
    	return true
    }
    
    // Services groups the Instances by FQDN. Each returned element is an Instances
    // containing only instances of a single service.
    func (i Instances) Services() Services {
    	grouped := map[string]Instances{}
    	for _, instance := range 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)
  5. okhttp/src/test/java/okhttp3/SocketChannelTest.kt

      @JvmField @RegisterExtension
      val clientTestRule =
        OkHttpClientTestRule().apply {
          recordFrames = true
          // recordSslDebug = true
        }
    
      // https://tools.ietf.org/html/rfc6066#page-6 specifies a FQDN is required.
      val hostname = "local.host"
      private val handshakeCertificates =
        run {
          // Generate a self-signed cert for the server to serve and the client to trust.
          val heldCertificate =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/util.go

    	return types.NamespacedName{
    		Namespace: svc.Attributes.Namespace,
    		Name:      svc.Attributes.Name,
    	}
    }
    
    // serviceClusterSetLocalHostname produces Kubernetes Multi-Cluster Services (MCS) ClusterSet FQDN for a k8s service
    func serviceClusterSetLocalHostname(nn types.NamespacedName) host.Name {
    	return host.Name(nn.Name + "." + nn.Namespace + "." + "svc" + "." + constants.DefaultClusterSetLocalDomain)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 02:01:47 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/ingress/status.go

    			c.enqueueAll()
    		}
    	}))
    	// Mesh may have changed ingress fields, enqueue everything
    	c.meshConfig.AddMeshHandler(c.enqueueAll)
    	return c
    }
    
    // runningAddresses returns a list of IP addresses and/or FQDN in the namespace
    // where the ingress controller is currently running
    func (s *StatusSyncer) runningAddresses() []string {
    	addrs := make([]string, 0)
    	ingressService := s.meshConfig.Mesh().IngressService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/discovery/v1/generated.proto

      // immutable after creation. The following address types are currently
      // supported:
      // * IPv4: Represents an IPv4 Address.
      // * IPv6: Represents an IPv6 Address.
      // * FQDN: Represents a Fully Qualified Domain Name.
      optional string addressType = 4;
    
      // endpoints is a list of unique endpoints in this slice. Each slice may
      // include a maximum of 1000 endpoints.
      // +listType=atomic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      // immutable after creation. The following address types are currently
      // supported:
      // * IPv4: Represents an IPv4 Address.
      // * IPv6: Represents an IPv6 Address.
      // * FQDN: Represents a Fully Qualified Domain Name.
      optional string addressType = 4;
    
      // endpoints is a list of unique endpoints in this slice. Each slice may
      // include a maximum of 1000 endpoints.
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // immutable after creation. The following address types are currently
      // supported:
      // * IPv4: Represents an IPv4 Address.
      // * IPv6: Represents an IPv6 Address.
      // * FQDN: Represents a Fully Qualified Domain Name.
      optional string addressType = 4;
    
      // endpoints is a list of unique endpoints in this slice. Each slice may
      // include a maximum of 1000 endpoints.
      // +listType=atomic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top