Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 184 for untaint (0.92 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/kubeadm/app/phases/kubelet/flags.go

    	}
    
    	if opts.registerTaintsUsingFlags && opts.nodeRegOpts.Taints != nil && len(opts.nodeRegOpts.Taints) > 0 {
    		taintStrs := []string{}
    		for _, taint := range opts.nodeRegOpts.Taints {
    			taintStrs = append(taintStrs, taint.ToString())
    		}
    		kubeletFlags = append(kubeletFlags, kubeadmapi.Arg{Name: "register-with-taints", Value: strings.Join(taintStrs, ",")})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. pkg/proxy/healthcheck/proxier_health.go

    func (hs *ProxierHealthServer) SyncNode(node *v1.Node) {
    	hs.lock.Lock()
    	defer hs.lock.Unlock()
    
    	if !node.DeletionTimestamp.IsZero() {
    		hs.nodeEligible = false
    		return
    	}
    	for _, taint := range node.Spec.Taints {
    		if taint.Key == ToBeDeletedTaint {
    			hs.nodeEligible = false
    			return
    		}
    	}
    	hs.nodeEligible = true
    }
    
    // NodeEligible returns nodeEligible field of ProxierHealthServer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/register_test.go

    			reflect.TypeOf(metav1.Duration{}):                 true,
    			reflect.TypeOf(metav1.TypeMeta{}):                 true,
    			reflect.TypeOf(v1.NodeConfigSource{}):             true,
    			reflect.TypeOf(v1.Taint{}):                        true,
    		},
    	}
    
    	if err := componentconfigtesting.VerifyInternalTypePackage(pkginfo); err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 16:55:02 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			if err != nil {
    				logger.Error(err, "Failed to get taint specs for node", "node", klog.KRef("", string(attachedVolume.NodeName)))
    			}
    
    			// Check whether volume is still mounted. Skip detach if it is still mounted unless we have
    			// decided to force detach or the node has `node.kubernetes.io/out-of-service` taint.
    			if attachedVolume.MountedByNode && !forceDetach && !hasOutOfServiceTaint {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. pkg/apis/core/helper/helpers.go

    // and converts it to the []Taint type in core.
    func GetTaintsFromNodeAnnotations(annotations map[string]string) ([]core.Taint, error) {
    	var taints []core.Taint
    	if len(annotations) > 0 && annotations[core.TaintsAnnotationKey] != "" {
    		err := json.Unmarshal([]byte(annotations[core.TaintsAnnotationKey]), &taints)
    		if err != nil {
    			return []core.Taint{}, err
    		}
    	}
    	return taints, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top