Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for NodePhase (0.22 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodestatus.go

    type NodeStatusApplyConfiguration struct {
    	Capacity        *v1.ResourceList                       `json:"capacity,omitempty"`
    	Allocatable     *v1.ResourceList                       `json:"allocatable,omitempty"`
    	Phase           *v1.NodePhase                          `json:"phase,omitempty"`
    	Conditions      []NodeConditionApplyConfiguration      `json:"conditions,omitempty"`
    	Addresses       []NodeAddressApplyConfiguration        `json:"addresses,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// The size of the image in bytes.
    	// +optional
    	SizeBytes int64
    }
    
    // NodePhase defines the phase in which a node is in
    type NodePhase string
    
    // These are the valid phases of node.
    const (
    	// NodePending means the node has been created/added by the system, but not configured.
    	NodePending NodePhase = "Pending"
    	// NodeRunning means the node has been configured and has Kubernetes components running.
    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. staging/src/k8s.io/api/core/v1/types.go

    	// NodePhase is the recently observed lifecycle phase of the node.
    	// More info: https://kubernetes.io/docs/concepts/nodes/node/#phase
    	// The field is never populated, and now is deprecated.
    	// +optional
    	Phase NodePhase `json:"phase,omitempty" protobuf:"bytes,3,opt,name=phase,casttype=NodePhase"`
    	// Conditions is an array of current observed node conditions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.4.md

    * Add basic audit logging ([#27087](https://github.com/kubernetes/kubernetes/pull/27087), [@soltysh](https://github.com/soltysh))
    * Marked NodePhase deprecated. ([#30005](https://github.com/kubernetes/kubernetes/pull/30005), [@dchen1107](https://github.com/dchen1107))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Capacity = *(*core.ResourceList)(unsafe.Pointer(&in.Capacity))
    	out.Allocatable = *(*core.ResourceList)(unsafe.Pointer(&in.Allocatable))
    	out.Phase = core.NodePhase(in.Phase)
    	out.Conditions = *(*[]core.NodeCondition)(unsafe.Pointer(&in.Conditions))
    	out.Addresses = *(*[]core.NodeAddress)(unsafe.Pointer(&in.Addresses))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // Allocatable represents the resources of a node that are available for scheduling.
      // Defaults to Capacity.
      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> allocatable = 2;
    
      // NodePhase is the recently observed lifecycle phase of the node.
      // More info: https://kubernetes.io/docs/concepts/nodes/node/#phase
      // The field is never populated, and now is deprecated.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"allocatable":     "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.",
    	"phase":           "NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // Allocatable represents the resources of a node that are available for scheduling.
      // Defaults to Capacity.
      // +optional
      map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> allocatable = 2;
    
      // NodePhase is the recently observed lifecycle phase of the node.
      // More info: https://kubernetes.io/docs/concepts/nodes/node/#phase
      // The field is never populated, and now is deprecated.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/api__v1_openapi.json

                "description": "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info"
              },
              "phase": {
                "description": "NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.",
                "type": "string"
              },
    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

              "description": "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info"
            },
            "phase": {
              "description": "NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.",
              "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