Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Fqdn (0.02 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/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)
Back to top