Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 209 for MainKt (0.09 sec)

  1. releasenotes/notes/48818.yaml

    issue:
      - 48818
      - 48286
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. pkg/controller/tainteviction/metrics/metrics.go

    	// PodDeletionsLatency tracks the latency, in seconds, between the time when a taint effect has been activated
    	// for the Pod and its deletion.
    	PodDeletionsLatency = metrics.NewHistogram(
    		&metrics.HistogramOpts{
    			Subsystem:      taintEvictionControllerSubsystem,
    			Name:           "pod_deletion_duration_seconds",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/nodeunschedulable/node_unschedulable.go

    	node := nodeInfo.Node()
    
    	if !node.Spec.Unschedulable {
    		return nil
    	}
    
    	// If pod tolerate unschedulable taint, it's also tolerate `node.Spec.Unschedulable`.
    	podToleratesUnschedulable := v1helper.TolerationsTolerateTaint(pod.Spec.Tolerations, &v1.Taint{
    		Key:    v1.TaintNodeUnschedulable,
    		Effect: v1.TaintEffectNoSchedule,
    	})
    	if !podToleratesUnschedulable {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 12:50:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. plugin/pkg/admission/defaulttolerationseconds/admission_test.go

    							Effect:            api.TaintEffectNoExecute,
    							TolerationSeconds: &defaultTolerationSeconds,
    						},
    					},
    				},
    			},
    		},
    		{
    			description: "pod has tolerations, but none is for taint `not-ready:NoExecute` or `unreachable:NoExecute`, expect add tolerations for `not-ready:NoExecute` and `unreachable:NoExecute`",
    			requestedPod: api.Pod{
    				Spec: api.PodSpec{
    					Tolerations: []api.Toleration{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 06 04:56:21 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  5. src/hash/test_cases.txt

    The days of the digital watch are numbered.  -Tom Stoppard
    Nepal premier won't resign.
    For every action there is an equal and opposite government program.
    His money is twice tainted: 'taint yours and 'taint mine.
    There is no reason for any individual to have a computer in their home. -Ken Olsen, 1977
    It's a tiny change to the code and not completely disgusting. - Bob Manchek
    size:  a.out:  bad magic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/markcontrolplane.go

    )
    
    var (
    	markControlPlaneExample = cmdutil.Examples(`
    		# Applies control-plane label and taint to the current node, functionally equivalent to what executed by kubeadm init.
    		kubeadm init phase mark-control-plane --config config.yaml
    
    		# Applies control-plane label and taint to a specific node
    		kubeadm init phase mark-control-plane --node-name myNode
    		`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		return
    	}
    	// We should not see any taint on the node(especially the Not-Ready taint with NoExecute effect).
    	if taintutils.TaintExists(node3.Spec.Taints, NotReadyTaintTemplate) || len(node3.Spec.Taints) > 0 {
    		t.Errorf("Found taint %v in %v, which should not be present", NotReadyTaintTemplate, node3.Spec.Taints)
    	}
    }
    
    // TestApplyNoExecuteTaintsToNodesEnqueueTwice ensures we taint every node with NoExecute even if enqueued twice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  8. pkg/controller/daemon/util/daemonset_util.go

    func AddOrUpdateDaemonPodTolerations(spec *v1.PodSpec) {
    	// DaemonSet pods shouldn't be deleted by NodeController in case of node problems.
    	// Add infinite toleration for taint notReady:NoExecute here
    	// to survive taint-based eviction enforced by NodeController
    	// when node turns not ready.
    	v1helper.AddOrUpdateTolerationInPodSpec(spec, &v1.Toleration{
    		Key:      v1.TaintNodeNotReady,
    		Operator: v1.TolerationOpExists,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 11:54:59 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/controllermanager_test.go

    // TestTaintEvictionControllerGating ensures that it is possible to run taint-manager as a separated controller
    // only when the SeparateTaintEvictionController feature is enabled
    func TestTaintEvictionControllerGating(t *testing.T) {
    	tests := []struct {
    		name               string
    		enableFeatureGate  bool
    		expectInitFuncCall bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pkg/controller/tainteviction/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package tainteviction contains the logic implementing taint-based eviction
    // for Pods running on Nodes with NoExecute taints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 723 bytes
    - Viewed (0)
Back to top