Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for NodeAddress (0.23 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.NodeAddress)(nil), (*core.NodeAddress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_NodeAddress_To_core_NodeAddress(a.(*v1.NodeAddress), b.(*core.NodeAddress), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.NodeAddress)(nil), (*v1.NodeAddress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// the characteristics of a NodeExternalIP. The IP it resolves to may or may not
    	// be a listed NodeExternalIP address.
    	NodeExternalDNS NodeAddressType = "ExternalDNS"
    )
    
    // NodeAddress represents node's address
    type NodeAddress struct {
    	Type    NodeAddressType
    	Address string
    }
    
    // ResourceName is the name identifying various resources in a ResourceList.
    type ResourceName string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional NodeStatus status = 3;
    }
    
    // NodeAddress contains information for the node's address.
    message NodeAddress {
      // Node address type, one of Hostname, ExternalIP or InternalIP.
      optional string type = 1;
    
      // The node address.
      optional string address = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// the characteristics of a NodeExternalIP. The IP it resolves to may or may not
    	// be a listed NodeExternalIP address.
    	NodeExternalDNS NodeAddressType = "ExternalDNS"
    )
    
    // NodeAddress contains information for the node's address.
    type NodeAddress struct {
    	// Node address type, one of Hostname, ExternalIP or InternalIP.
    	Type NodeAddressType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=NodeAddressType"`
    	// The node address.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional NodeStatus status = 3;
    }
    
    // NodeAddress contains information for the node's address.
    message NodeAddress {
      // Node address type, one of Hostname, ExternalIP or InternalIP.
      optional string type = 1;
    
      // The node address.
      optional string address = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_Node
    }
    
    var map_NodeAddress = map[string]string{
    	"":        "NodeAddress contains information for the node's address.",
    	"type":    "Node address type, one of Hostname, ExternalIP or InternalIP.",
    	"address": "The node address.",
    }
    
    func (NodeAddress) SwaggerDoc() map[string]string {
    	return map_NodeAddress
    }
    
    var map_NodeAffinity = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	// }
    
    	allErrs = append(allErrs, ValidateNodeResources(node)...)
    
    	// Validate no duplicate addresses in node status.
    	addresses := make(map[core.NodeAddress]bool)
    	for i, address := range node.Status.Addresses {
    		if _, ok := addresses[address]; ok {
    			allErrs = append(allErrs, field.Duplicate(field.NewPath("status", "addresses").Index(i), address))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top