Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for NodeAddress (0.24 sec)

  1. staging/src/k8s.io/api/core/v1/generated.pb.go

    var xxx_messageInfo_Node proto.InternalMessageInfo
    
    func (m *NodeAddress) Reset()      { *m = NodeAddress{} }
    func (*NodeAddress) ProtoMessage() {}
    func (*NodeAddress) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{97}
    }
    func (m *NodeAddress) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *NodeAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  2. 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)
  3. pkg/kubelet/kubelet_test.go

    					Conditions: []v1.NodeCondition{
    						{
    							Type:    v1.NodeReady,
    							Status:  v1.ConditionTrue,
    							Reason:  "Ready",
    							Message: "Node ready",
    						},
    					},
    					Addresses: []v1.NodeAddress{
    						{
    							Type:    v1.NodeInternalIP,
    							Address: testKubeletHostIP,
    						},
    						{
    							Type:    v1.NodeInternalIP,
    							Address: testKubeletHostIPv6,
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K 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/kubelet/kubelet.go

    	// pods.
    	mirrorPodClient kubepod.MirrorClient
    
    	rootDirectory    string
    	podLogsDirectory string
    
    	lastObservedNodeAddressesMux sync.RWMutex
    	lastObservedNodeAddresses    []v1.NodeAddress
    
    	// onRepeatedHeartbeatFailure is called when a heartbeat operation fails more than once. optional.
    	onRepeatedHeartbeatFailure func()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. 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)
  9. api/openapi-spec/v3/api__v1_openapi.json

              {
                "group": "",
                "kind": "Node",
                "version": "v1"
              }
            ]
          },
          "io.k8s.api.core.v1.NodeAddress": {
            "description": "NodeAddress contains information for the node's address.",
            "properties": {
              "address": {
                "default": "",
                "description": "The node address.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

            {
              "group": "",
              "kind": "Node",
              "version": "v1"
            }
          ]
        },
        "io.k8s.api.core.v1.NodeAddress": {
          "description": "NodeAddress contains information for the node's address.",
          "properties": {
            "address": {
              "description": "The node address.",
              "type": "string"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
Back to top