Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 184 for untaint (0.12 sec)

  1. src/hash/crc32/crc32_test.go

    	{0x33955150, 0xc5142380, "For every action there is an equal and opposite government program.", "crc\x01ʇ\x91Ma\xe9>\x86", "crc\x01wB\x84\x81\xaa@\xc4\x1c"},
    	{0x26216a4b, 0x75eb77dd, "His money is twice tainted: 'taint yours and 'taint mine.", "crc\x01ʇ\x91M\\\x1an\x88", "crc\x01wB\x84\x81W\a8Z"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/metrics/metrics.go

    )
    
    const pluginNameNotAvailable = "N/A"
    
    const (
    	// Force detach reason is timeout
    	ForceDetachReasonTimeout = "timeout"
    	// Force detach reason is the node has an out-of-service taint
    	ForceDetachReasonOutOfService = "out-of-service"
    	attachDetachController        = "attach_detach_controller"
    )
    
    var (
    	inUseVolumeMetricDesc = metrics.NewDesc(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 10 06:30:05 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/events.go

    	NodeAnnotationChange = framework.ClusterEvent{Resource: framework.Node, ActionType: framework.UpdateNodeAnnotation, Label: "NodeAnnotationChange"}
    	// NodeTaintChange is the event when node taint is changed.
    	NodeTaintChange = framework.ClusterEvent{Resource: framework.Node, ActionType: framework.UpdateNodeTaint, Label: "NodeTaintChange"}
    	// NodeConditionChange is the event when node condition is changed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. pilot/pkg/features/pilot.go

    		"The interval for istiod to fetch the jwks_uri for the jwks public key.",
    	).Get()
    
    	EnableNodeUntaintControllers = env.Register(
    		"PILOT_ENABLE_NODE_UNTAINT_CONTROLLERS",
    		false,
    		"If enabled, controller that untaints nodes with cni pods ready will run. This should be enabled if you disabled ambient init containers.").Get()
    
    	// EnableUnsafeAssertions enables runtime checks to test assertions in our code. This should never be enabled in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/kubelet/config/common.go

    		pod.Annotations = make(map[string]string)
    	}
    	// The generated UID is the hash of the file.
    	pod.Annotations[kubetypes.ConfigHashAnnotationKey] = string(pod.UID)
    
    	if isFile {
    		// Applying the default Taint tolerations to static pods,
    		// so they are not evicted when there are node problems.
    		helper.AddOrUpdateTolerationInPod(pod, &api.Toleration{
    			Operator: "Exists",
    			Effect:   api.TaintEffectNoExecute,
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/validation/validation.go

    		if err := utiltaints.CheckTaintValidation(nodeTaint); err != nil {
    			allErrors = append(allErrors, fmt.Errorf("invalid taint: %v", nodeTaint))
    		}
    		if nodeTaint.TimeAdded != nil {
    			allErrors = append(allErrors, fmt.Errorf("invalid configuration: taint.TimeAdded is not nil"))
    		}
    	}
    
    	switch kc.TopologyManagerPolicy {
    	case kubeletconfig.NoneTopologyManagerPolicy:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. pkg/kubemark/hollow_kubelet.go

    	NodeName            string
    	KubeletPort         int
    	KubeletReadOnlyPort int
    	MaxPods             int
    	PodsPerCore         int
    	NodeLabels          map[string]string
    	RegisterWithTaints  []v1.Taint
    }
    
    // Builds a KubeletConfiguration for the HollowKubelet, ensuring that the
    // usual defaults are applied for fields we do not override.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/config/cluster_test.go

    					Name: nodeName,
    					Annotations: map[string]string{
    						kubeadmconstants.AnnotationKubeadmCRISocket: "myCRIsocket",
    					},
    				},
    				Spec: v1.NodeSpec{
    					Taints: []v1.Taint{kubeadmconstants.ControlPlaneTaint},
    				},
    			},
    		},
    		{
    			name:          "invalid - no node",
    			fileContents:  kubeletConfFiles["configWithEmbeddedCert"],
    			expectedError: true,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/types.go

    	// it will be defaulted with a control-plane taint for control-plane nodes. If you don't want to taint your control-plane
    	// node, set this field to an empty slice, i.e. `taints: []` in the YAML file. This field is solely used for Node registration.
    	Taints []v1.Taint
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/eviction_manager.go

    		}
    
    		// When node has memory pressure, check BestEffort Pod's toleration:
    		// admit it if tolerates memory pressure taint, fail for other tolerations, e.g. DiskPressure.
    		if corev1helpers.TolerationsTolerateTaint(attrs.Pod.Spec.Tolerations, &v1.Taint{
    			Key:    v1.TaintNodeMemoryPressure,
    			Effect: v1.TaintEffectNoSchedule,
    		}) {
    			return lifecycle.PodAdmitResult{Admit: true}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top