Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ProviderName (0.28 sec)

  1. common-protos/k8s.io/api/core/v1/generated.proto

      // each of IPv4 and IPv6.
      // +optional
      // +patchStrategy=merge
      repeated string podCIDRs = 7;
    
      // ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>
      // +optional
      optional string providerID = 3;
    
      // Unschedulable controls node schedulability of new pods. By default, node is schedulable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// Note: assigning IP ranges to nodes might need to be revisited when we support migratable IPs.
    	// +optional
    	PodCIDRs []string
    
    	// ID of the node assigned by the cloud provider
    	// Note: format is "<ProviderName>://<ProviderSpecificNodeID>"
    	// +optional
    	ProviderID string
    
    	// Unschedulable controls node schedulability of new pods. By default node is schedulable.
    	// +optional
    	Unschedulable bool
    
    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_swagger_doc_generated.go

    	"providerID":    "ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>",
    	"unschedulable": "Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // each of IPv4 and IPv6.
      // +optional
      // +patchStrategy=merge
      // +listType=set
      repeated string podCIDRs = 7;
    
      // ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>
      // +optional
      optional string providerID = 3;
    
      // Unschedulable controls node schedulability of new pods. By default, node is schedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// +patchStrategy=merge
    	// +listType=set
    	PodCIDRs []string `json:"podCIDRs,omitempty" protobuf:"bytes,7,opt,name=podCIDRs" patchStrategy:"merge"`
    
    	// ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>
    	// +optional
    	ProviderID string `json:"providerID,omitempty" protobuf:"bytes,3,opt,name=providerID"`
    	// Unschedulable controls node schedulability of new pods. By default, node is schedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top