Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for addressValue (0.17 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Node.yaml

      providerID: providerIDValue
      taints:
      - effect: effectValue
        key: keyValue
        timeAdded: "2004-01-01T01:01:01Z"
        value: valueValue
      unschedulable: true
    status:
      addresses:
      - address: addressValue
        type: typeValue
      allocatable:
        allocatableKey: "0"
      capacity:
        capacityKey: "0"
      conditions:
      - lastHeartbeatTime: "2003-01-01T01:01:01Z"
        lastTransitionTime: "2004-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.json

            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
            "message": "messageValue"
          }
        ],
        "addresses": [
          {
            "type": "typeValue",
            "address": "addressValue"
          }
        ],
        "daemonEndpoints": {
          "kubeletEndpoint": {
            "Port": 1
          }
        },
        "nodeInfo": {
          "machineID": "machineIDValue",
          "systemUUID": "systemUUIDValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.json

            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
            "message": "messageValue"
          }
        ],
        "addresses": [
          {
            "type": "typeValue",
            "address": "addressValue"
          }
        ],
        "daemonEndpoints": {
          "kubeletEndpoint": {
            "Port": 1
          }
        },
        "nodeInfo": {
          "machineID": "machineIDValue",
          "systemUUID": "systemUUIDValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Node.json

            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
            "message": "messageValue"
          }
        ],
        "addresses": [
          {
            "type": "typeValue",
            "address": "addressValue"
          }
        ],
        "daemonEndpoints": {
          "kubeletEndpoint": {
            "Port": 1
          }
        },
        "nodeInfo": {
          "machineID": "machineIDValue",
          "systemUUID": "systemUUIDValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.yaml

      providerID: providerIDValue
      taints:
      - effect: effectValue
        key: keyValue
        timeAdded: "2004-01-01T01:01:01Z"
        value: valueValue
      unschedulable: true
    status:
      addresses:
      - address: addressValue
        type: typeValue
      allocatable:
        allocatableKey: "0"
      capacity:
        capacityKey: "0"
      conditions:
      - lastHeartbeatTime: "2003-01-01T01:01:01Z"
        lastTransitionTime: "2004-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.yaml

      providerID: providerIDValue
      taints:
      - effect: effectValue
        key: keyValue
        timeAdded: "2004-01-01T01:01:01Z"
        value: valueValue
      unschedulable: true
    status:
      addresses:
      - address: addressValue
        type: typeValue
      allocatable:
        allocatableKey: "0"
      capacity:
        capacityKey: "0"
      conditions:
      - lastHeartbeatTime: "2003-01-01T01:01:01Z"
        lastTransitionTime: "2004-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters.go

    	for _, address := range addresses {
    		if address.Type == addressType {
    			return true
    		}
    	}
    	return false
    }
    func hasAddressValue(addresses []v1.NodeAddress, addressValue string) bool {
    	for _, address := range addresses {
    		if address.Address == addressValue {
    			return true
    		}
    	}
    	return false
    }
    
    // MachineInfo returns a Setter that updates machine-related information on the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top