Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for Assigned (0.18 sec)

  1. pkg/apis/core/types.go

    	// reports this record in Assigned. Assigned only updates in the status after
    	// the record has been checkpointed to disk. When the Kubelet is restarted,
    	// it tries to make the Assigned config the Active config by loading and
    	// validating the checkpointed payload identified by Assigned.
    	// +optional
    	Assigned *NodeConfigSource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"assigned":      "Assigned reports the checkpointed config the node will try to use. When Node.Spec.ConfigSource is updated, the node checkpoints the associated config payload to local disk, along with a record indicating intended config. The node refers to this record to choose its config checkpoint, and reports this record in Assigned. Assigned only updates in the status after the record has been checkpointed...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// reports this record in Assigned. Assigned only updates in the status after
    	// the record has been checkpointed to disk. When the Kubelet is restarted,
    	// it tries to make the Assigned config the Active config by loading and
    	// validating the checkpointed payload identified by Assigned.
    	// +optional
    	Assigned *NodeConfigSource `json:"assigned,omitempty" protobuf:"bytes,1,opt,name=assigned"`
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // reports this record in Assigned. Assigned only updates in the status after
      // the record has been checkpointed to disk. When the Kubelet is restarted,
      // it tries to make the Assigned config the Active config by loading and
      // validating the checkpointed payload identified by Assigned.
      // +optional
      optional NodeConfigSource assigned = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // reports this record in Assigned. Assigned only updates in the status after
      // the record has been checkpointed to disk. When the Kubelet is restarted,
      // it tries to make the Assigned config the Active config by loading and
      // validating the checkpointed payload identified by Assigned.
      // +optional
      optional NodeConfigSource assigned = 1;
    
    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. doc/go_spec.html

    <pre class="grammar">
    uint8       the set of all unsigned  8-bit integers (0 to 255)
    uint16      the set of all unsigned 16-bit integers (0 to 65535)
    uint32      the set of all unsigned 32-bit integers (0 to 4294967295)
    uint64      the set of all unsigned 64-bit integers (0 to 18446744073709551615)
    
    int8        the set of all signed  8-bit integers (-128 to 127)
    int16       the set of all signed 16-bit integers (-32768 to 32767)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      provided in the spec under some conditions: \n * no addresses are
                      specified, all addresses are dynamically assigned * a combination
                      of specified and dynamic addresses are assigned * a specified address
                      was unusable (e.g. already in use) \n "
                    items:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    func validateNodeConfigStatus(status *core.NodeConfigStatus, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if status.Assigned != nil {
    		allErrs = append(allErrs, validateNodeConfigSourceStatus(status.Assigned, fldPath.Child("assigned"))...)
    	}
    	if status.Active != nil {
    		allErrs = append(allErrs, validateNodeConfigSourceStatus(status.Active, fldPath.Child("active"))...)
    	}
    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. pkg/registry/core/service/storage/storage_test.go

    					if p.NodePort == 0 {
    						t.Errorf("expected nodePort to be assigned: %d", p.NodePort)
    					}
    					if portIsAllocated(t, storage.alloc.serviceNodePorts, p.NodePort) {
    						t.Errorf("expected nodePort to not be allocated: %d", p.NodePort)
    					}
    				}
    
    				if updatedSvc.Spec.HealthCheckNodePort == 0 {
    					t.Errorf("expected HCNP to be assigned: %d", updatedSvc.Spec.HealthCheckNodePort)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.15.md

    - Fix handling of aws-load-balancer-security-groups annotation. Security-Groups assigned with this annotation are no longer modified by kubernetes which is the expected behaviour of most users. Also no unnecessary Security-Groups are created anymore if this annotation is used. ([#88691](https://github.com/kubernetes/kubernetes/pull/88691),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
Back to top