Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 184 for untaint (0.39 sec)

  1. pkg/controller/controller_utils.go

    		if err != nil {
    			return err
    		}
    
    		var newNode *v1.Node
    		oldNodeCopy := oldNode
    		updated := false
    		for _, taint := range taints {
    			curNewNode, ok, err := taintutils.AddOrUpdateTaint(oldNodeCopy, taint)
    			if err != nil {
    				return fmt.Errorf("failed to update taint of node")
    			}
    			updated = updated || ok
    			newNode = curNewNode
    			oldNodeCopy = curNewNode
    		}
    		if !updated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. pkg/kubelet/lifecycle/predicate.go

    			reasons = append(reasons, &PredicateFailureError{r.Name, r.Reason})
    		}
    	}
    
    	// Check taint/toleration except for static pods
    	if !types.IsStaticPod(pod) {
    		_, isUntolerated := corev1.FindMatchingUntoleratedTaint(nodeInfo.Node().Spec.Taints, pod.Spec.Tolerations, func(t *v1.Taint) bool {
    			// Kubelet is only interested in the NoExecute taint.
    			return t.Effect == v1.TaintEffectNoExecute
    		})
    		if isUntolerated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. pkg/controller/podgc/gc_controller_test.go

    		{
    			name: "some pods have deletion timestamp and/or phase set and some of the corresponding nodes have an" +
    				"outofservice taint that are not ready",
    			nodes: []node{
    				// terminated pods on this node should be force deleted
    				{name: "worker-0", readyCondition: v1.ConditionFalse, taints: []v1.Taint{{Key: v1.TaintNodeOutOfService,
    					Effect: v1.TaintEffectNoExecute}}},
    				// terminated pods on this node should not be force deleted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

    {{- end}}
    {{- if .Values.global.logAsJson }}
              - --log_as_json
    {{- end }}
              - --domain
              - {{ .Values.global.proxy.clusterDomain }}
    {{- if .Values.pilot.taint.namespace }}
              - --cniNamespace={{ .Values.pilot.taint.namespace }}
    {{- end }}
              - --keepaliveMaxServerConnectionAge
              - "{{ .Values.pilot.keepaliveMaxServerConnectionAge }}"
    {{- if .Values.pilot.extraContainerArgs }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. pkg/controller/podgc/metrics/metrics.go

    	PodGCReasonTerminated = "terminated"
    	// PodGCReasonCompleted is used when the pod is terminating and the corresponding node
    	// is not ready and has `node.kubernetes.io/out-of-service` taint.
    	PodGCReasonTerminatingOutOfService = "out-of-service"
    	// PodGCReasonOrphaned is used when the pod is orphaned which means the corresponding node
    	// has been deleted.
    	PodGCReasonOrphaned = "orphaned"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 18:06:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Configures whether to use an existing CNI installation for workloads
    	Cni   *CNIUsageConfig             `protobuf:"bytes,55,opt,name=cni,proto3" json:"cni,omitempty"`
    	Taint *PilotTaintControllerConfig `protobuf:"bytes,57,opt,name=taint,proto3" json:"taint,omitempty"`
    	// If set, `istiod` will allow connections from trusted node proxy ztunnels
    	// in the provided namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  7. src/hash/adler32/adler32_test.go

    	{0x8c3c09ea, "Nepal premier won't resign.", "adl\x01\"\x05\x05\x05"},
    	{0x45ac18fd, "For every action there is an equal and opposite government program.", "adl\x01\xcc\xfa\f\x00"},
    	{0x53c61462, "His money is twice tainted: 'taint yours and 'taint mine.", "adl\x01\x93\xa9\n\b"},
    	{0x7e511e63, "There is no reason for any individual to have a computer in their home. -Ken Olsen, 1977", "adl\x01e\xf5\x10\x14"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 21:04:12 UTC 2017
    - 5.5K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	// Force detach metric due to out-of-service taint
    	// We shouldn't see any additional force detaches, so only consider the initial count
    	testForceDetachMetric(t, int(initialForceDetachCount), metrics.ForceDetachReasonOutOfService)
    
    	// Act
    	// Taint the node
    	node3 := node2.DeepCopy()
    	node3.Spec.Taints = append(node3.Spec.Taints, v1.Taint{Key: v1.TaintNodeOutOfService, Effect: v1.TaintEffectNoExecute})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_node_status.go

    	}
    	for label, value := range osLabels {
    		node.Labels[label] = value
    	}
    
    	nodeTaints := make([]v1.Taint, len(kl.registerWithTaints))
    	copy(nodeTaints, kl.registerWithTaints)
    	unschedulableTaint := v1.Taint{
    		Key:    v1.TaintNodeUnschedulable,
    		Effect: v1.TaintEffectNoSchedule,
    	}
    
    	// Taint node with TaintNodeUnschedulable when initializing
    	// node to avoid race condition; refer to #63897 for more detail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. plugin/pkg/admission/defaulttolerationseconds/admission.go

    // It will add default tolerations for every pod
    // that tolerate taints `notReady:NoExecute` and `unreachable:NoExecute`,
    // with tolerationSeconds of 300s.
    // If the pod already specifies a toleration for taint `notReady:NoExecute`
    // or `unreachable:NoExecute`, the plugin won't touch it.
    type Plugin struct {
    	*admission.Handler
    }
    
    var _ admission.MutationInterface = &Plugin{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 06 04:56:21 UTC 2019
    - 4K bytes
    - Viewed (0)
Back to top