Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for untaint (0.17 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	node := nodeInfo.Node()
    
    	taint, isUntolerated := v1helper.FindMatchingUntoleratedTaint(node.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc())
    	if !isUntolerated {
    		return nil
    	}
    
    	errReason := fmt.Sprintf("node(s) had untolerated taint {%s: %s}", taint.Key, taint.Value)
    	return framework.NewStatus(framework.UnschedulableAndUnresolvable, errReason)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. 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)
  3. cmd/kubeadm/app/phases/kubelet/flags_test.go

    			},
    		},
    		{
    			name: "register with taints",
    			opts: kubeletFlagsOpts{
    				nodeRegOpts: &kubeadmapi.NodeRegistrationOptions{
    					CRISocket: "unix:///var/run/containerd/containerd.sock",
    					Taints: []v1.Taint{
    						{
    							Key:    "foo",
    							Value:  "bar",
    							Effect: "baz",
    						},
    						{
    							Key:    "key",
    							Value:  "val",
    							Effect: "eff",
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
Back to top