Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for postBind (0.29 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// health signal updated from kubelet. There are 2 kinds of node healthiness
    	// signals: NodeStatus and NodeLease. If it doesn't receive update for this amount
    	// of time, it will start posting "NodeReady==ConditionUnknown". The amount of
    	// time before which Controller start evicting pods is controlled via flag
    	// 'pod-eviction-timeout'.
    	// Note: be cautious when changing the constant, it must work with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      optional bool readOnly = 2;
    }
    
    // Eviction evicts a pod from its node subject to certain policies and safety constraints.
    // This is a subresource of Pod.  A request to cause such an eviction is
    // created by POSTing to .../pods/<pod name>/evictions.
    message Eviction {
      // ObjectMeta describes the pod that is being evicted.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_plugin.go

    		},
    	}
    
    	// Initializing the label management channels
    	nim = nodeinfomanager.NewNodeInfoManager(host.GetNodeName(), host, migratedPlugins)
    
    	// This function prevents Kubelet from posting Ready status until CSINode
    	// is both installed and initialized
    	if err := initializeCSINode(host); err != nil {
    		return errors.New(log("failed to initialize CSINode: %v", err))
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. pkg/kubelet/nodestatus/setters.go

    		newNodeReadyCondition := v1.NodeCondition{
    			Type:              v1.NodeReady,
    			Status:            v1.ConditionTrue,
    			Reason:            "KubeletReady",
    			Message:           "kubelet is posting ready status",
    			LastHeartbeatTime: currentTime,
    		}
    		errs := []error{runtimeErrorsFunc(), networkErrorsFunc(), storageErrorsFunc(), nodeShutdownManagerErrorsFunc()}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/cronjob_controllerv2.go

    	}
    
    	// ------------------------------------------------------------------ //
    
    	// If this process restarts at this point (after posting a job, but
    	// before updating the status), then we might try to start the job on
    	// the next time.  Actually, if we re-list the SJs and Jobs on the next
    	// iteration of syncAll, we might not see our own status update, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    							{
    								Type:               v1.NodeReady,
    								Status:             v1.ConditionUnknown,
    								Reason:             "NodeStatusUnknown",
    								Message:            "Kubelet stopped posting node status.",
    								LastHeartbeatTime:  metav1.Date(2015, 1, 1, 12, 0, 0, 0, time.UTC),
    								LastTransitionTime: metav1.Time{Time: metav1.Date(2015, 1, 1, 12, 0, 0, 0, time.UTC).Add(time.Hour)},
    							},
    							{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     map[string]interface{}{},
    							Ref:         ref("k8s.io/kube-scheduler/config/v1.PluginSet"),
    						},
    					},
    					"postBind": {
    						SchemaProps: spec.SchemaProps{
    							Description: "PostBind is a list of plugins that should be invoked after a pod is successfully bound.",
    							Default:     map[string]interface{}{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    )
    
    const (
    	// Max amount of time to wait for the container runtime to come up.
    	maxWaitForContainerRuntime = 30 * time.Second
    
    	// nodeStatusUpdateRetry specifies how many times kubelet retries when posting node status failed.
    	nodeStatusUpdateRetry = 5
    
    	// nodeReadyGracePeriod is the period to allow for before fast status update is
    	// terminated and container runtime not being ready is logged without verbosity guard.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

    * Adds (alpha feature) the ability to dynamically configure Kubelets by enabling the DynamicKubeletConfig feature gate, posting a ConfigMap to the API server, and setting the spec.configSource field on Node objects. See the proposal at https://github.com/kubernetes/community/blob/master/contributors/design-proposals/node/dynamic-kubelet-configuration.md for details. ([#46
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/api__v1_openapi.json

          "io.k8s.api.policy.v1.Eviction": {
            "description": "Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod.  A request to cause such an eviction is created by POSTing to .../pods/<pod name>/evictions.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top