Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 184 for untaint (0.18 sec)

  1. pkg/controller/daemon/daemon_controller_test.go

    	noScheduleTaints      = []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}
    	noExecuteTaints       = []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoExecute"}}
    )
    
    func nowPointer() *metav1.Time {
    	now := metav1.Now()
    	return &now
    }
    
    var (
    	nodeNotReady = []v1.Taint{{
    		Key:       v1.TaintNodeNotReady,
    		Effect:    v1.TaintEffectNoExecute,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  2. 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)
  3. cmd/kubeadm/app/util/config/initconfiguration.go

    	if err != nil {
    		return err
    	}
    
    	// Only if the slice is nil, we should append the control-plane taint. This allows the user to specify an empty slice for no default control-plane taint
    	if controlPlaneTaint && cfg.Taints == nil {
    		cfg.Taints = []v1.Taint{kubeadmconstants.ControlPlaneTaint}
    	}
    
    	if cfg.CRISocket == "" {
    		if skipCRIDetect {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodeunschedulable/node_unschedulable_test.go

    			},
    			expectedHint: framework.Queue,
    		},
    		{
    			name: "skip-unrelated-change",
    			pod:  &v1.Pod{},
    			newObj: &v1.Node{
    				Spec: v1.NodeSpec{
    					Unschedulable: true,
    					Taints: []v1.Taint{
    						{
    							Key:    v1.TaintNodeNotReady,
    							Effect: v1.TaintEffectNoExecute,
    						},
    					},
    				},
    			},
    			oldObj: &v1.Node{
    				Spec: v1.NodeSpec{
    					Unschedulable: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 12:50:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

        verbs: ["get", "list", "watch"]
      - apiGroups: ["discovery.k8s.io"]
        resources: ["endpointslices"]
        verbs: ["get", "list", "watch"]
    
    {{- if .Values.pilot.taint.enabled }}
      - apiGroups: [""]
        resources: ["nodes"]
        verbs: ["patch"]
    {{- end }}
    
      # ingress controller
    {{- if .Values.global.istiod.enableAnalysis }}
      - apiGroups: ["extensions", "networking.k8s.io"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/names/controller_names.go

    	NodeIpamController                           = "node-ipam-controller"
    	NodeLifecycleController                      = "node-lifecycle-controller"
    	TaintEvictionController                      = "taint-eviction-controller"
    	PersistentVolumeBinderController             = "persistentvolume-binder-controller"
    	PersistentVolumeAttachDetachController       = "persistentvolume-attach-detach-controller"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/clusterrole.yaml

        verbs: ["get", "list", "watch"]
      - apiGroups: ["discovery.k8s.io"]
        resources: ["endpointslices"]
        verbs: ["get", "list", "watch"]
    
    {{- if .Values.pilot.taint.enabled }}
      - apiGroups: [""]
        resources: ["nodes"]
        verbs: ["patch"]
    {{- end }}
    
      # ingress controller
    {{- if .Values.global.istiod.enableAnalysis }}
      - apiGroups: ["extensions", "networking.k8s.io"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/hash/crc64/crc64_test.go

    	{0x8878963a649d4916, 0x49e41b2660b106d, "His money is twice tainted: 'taint yours and 'taint mine.", "crc\x02s\xba\x84\x84\xbb\xcd]\xefñ\xff\xf1\xe0/Δ", "crc\x02`&\x9aR\xe1\xb7\xfeeOL/\xb1\xec\xa2\x14\x87"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 25 06:32:12 UTC 2018
    - 9.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta3/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 []corev1.Taint `json:"taints"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/validation/validation_test.go

    	}, {
    		name: "invalid Taint.TimeAdded",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			now := metav1.Now()
    			conf.RegisterWithTaints = []v1.Taint{{TimeAdded: &now}}
    			return conf
    		},
    		errMsg: "invalid configuration: taint.TimeAdded is not nil",
    	}, {
    		name: "specify tracing with KubeletTracing disabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top