Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Fqdn (0.12 sec)

  1. pkg/workloadapi/workload.proto

      // Name represents the name for the service.
      // For Kubernetes, this is the Service name.
      string name = 1;
      // Namespace represents the namespace for the service.
      string namespace = 2;
      // Hostname represents the FQDN of the service.
      // For Kubernetes, this would be <name>.<namespace>.svc.<cluster domain>.
      // TODO: support this field
      string hostname = 3;
      // Address represents the addresses the service can be reached at.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    		// https://github.com/kubernetes-sigs/gateway-api/pull/614
    		fqdn := addr.Value
    		if !strings.Contains(fqdn, ".") {
    			// Short name, expand it
    			fqdn = fmt.Sprintf("%s.%s.svc.%s", fqdn, obj.Namespace, r.Domain)
    		}
    		gatewayServices = append(gatewayServices, fqdn)
    	}
    	if len(skippedAddresses) > 0 {
    		// Give error but return services, this is a soft failure
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. tests/integration/ambient/waypoint_test.go

      annotations:
        networking.istio.io/address-type: IPAddress
        networking.istio.io/service-type: ClusterIP
    spec:
      gatewayClassName: istio
      listeners:
      - name: {{.Service}}-fqdn
        hostname: {{.Service}}.{{.Namespace}}.svc.cluster.local
        port: {{.Port}}
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Same
      - name: {{.Service}}-svc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    			errs = AppendValidation(errs, fmt.Errorf("endpoint address %q is not a valid IP address", addr))
    		} else if err := agent.ValidateFQDN(addr); err != nil { // Otherwise could be an FQDN
    			errs = AppendValidation(errs, fmt.Errorf("endpoint address %q is not a valid FQDN or an IP address", addr))
    		}
    	}
    
    	for name, port := range we.Ports {
    		if servicePorts != nil && !servicePorts.Contains(name) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

            host: concrete.default.svc.cluster.local`,
    		kubeConfig: service,
    		calls: []simulation.Expect{
    			{
    				// This work, Host is just an opaque hostname match
    				Name: "HTTP virtual service applies to alias fqdn",
    				Call: simulation.Call{Address: "1.2.3.4", Port: 80, Protocol: simulation.HTTP, HostHeader: "alias.default.svc.cluster.local", Path: "/one"},
    				Result: simulation.Result{
    					RouteMatched:   "route1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster.go

    func buildServiceMetadata(svc *model.Service) *structpb.Value {
    	return &structpb.Value{
    		Kind: &structpb.Value_StructValue{
    			StructValue: &structpb.Struct{
    				Fields: map[string]*structpb.Value{
    					// service fqdn
    					"host": {
    						Kind: &structpb.Value_StringValue{
    							StringValue: string(svc.Hostname),
    						},
    					},
    					// short name of the service
    					"name": {
    						Kind: &structpb.Value_StringValue{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    	// Standard PROXY source and destination information
    	// is included, along with potential extra TLV headers:
    	// 0xD0 - The SPIFFE identity of the source workload
    	// 0xD1 - The FQDN or Hostname of the targeted Service
    	ApplicationTunnel_PROXY ApplicationTunnel_Protocol = 1
    )
    
    // Enum value maps for ApplicationTunnel_Protocol.
    var (
    	ApplicationTunnel_Protocol_name = map[int32]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_test.go

    const (
    	None ConfigType = iota
    	Mesh
    	DestinationRule
    	DestinationRuleForOsDefault
    	MeshWideTCPKeepaliveSeconds        = 11
    	DestinationRuleTCPKeepaliveSeconds = 21
    	TestServiceNamespace               = "bar"
    	// FQDN service name in namespace TestServiceNamespace. Note the mesh config domain is empty.
    	TestServiceNHostname = "foo.bar"
    )
    
    func testMesh() *meshconfig.MeshConfig {
    	return &meshconfig.MeshConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    	if err != nil {
    		return nil, nil, err
    	}
    	// nodename will be equal to hostname if SetHostnameAsFQDN is nil or false. If SetHostnameFQDN
    	// is true and hostDomainName is defined, nodename will be the FQDN (hostname.hostDomainName)
    	nodename, err := util.GetNodenameForKernel(hostname, hostDomainName, pod.Spec.SetHostnameAsFQDN)
    	if err != nil {
    		return nil, nil, err
    	}
    	opts.Hostname = nodename
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top