Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for untaint (0.16 sec)

  1. tests/integration/ambient/untaint/main_test.go

    		var taints []corev1.Taint
    		for _, taint := range node.Spec.Taints {
    			if taint.Key == "cni.istio.io/not-ready" {
    				continue
    			}
    			taints = append(taints, taint)
    		}
    		if len(taints) != len(node.Spec.Taints) {
    			node.Spec.Taints = taints
    			_, err := nodeC.Update(context.TODO(), &node, metav1.UpdateOptions{})
    			if err != nil {
    				panic(err)
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 14:58:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/values.yaml

        env: {}
        
        # Settings related to the untaint controller
        # This controller will remove `cni.istio.io/not-ready` from nodes when the istio-cni pod becomes ready
        # It should be noted that cluster operator/owner is responsible for having the taint set by their infrastructure provider when new nodes are added to the cluster; the untaint controller does not taint nodes
        taint:
          # Controls whether or not the untaint controller is active
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/values.yaml

        env: {}
        # Settings related to the untaint controller
        # This controller will remove `cni.istio.io/not-ready` from nodes when the istio-cni pod becomes ready
        # It should be noted that cluster operator/owner is responsible for having the taint set by their infrastructure provider when new nodes are added to the cluster; the untaint controller does not taint nodes
        taint:
          # Controls whether or not the untaint controller is active
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. cluster/gce/windows/smoke-test.sh

      done
      echo "Verified that all Windows nodes have status Ready"
    }
    
    function untaint_windows_nodes {
      # Untaint the windows nodes to allow test workloads without tolerations to be
      # scheduled onto them.
      WINDOWS_NODES=$(${kubectl} get nodes -l kubernetes.io/os=windows -o name)
      for node in $WINDOWS_NODES; do
        ${kubectl} taint node "$node" node.kubernetes.io/os:NoSchedule-
      done
    }
    
    function check_no_system_pods_on_windows_nodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    	"google.golang.org/grpc/reflection"
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/client-go/rest"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/api/security/v1beta1"
    	"istio.io/istio/pilot/pkg/controllers/untaint"
    	kubecredentials "istio.io/istio/pilot/pkg/credentials/kube"
    	"istio.io/istio/pilot/pkg/features"
    	istiogrpc "istio.io/istio/pilot/pkg/grpc"
    	"istio.io/istio/pilot/pkg/keycertbundle"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      CNIUsageConfig cni = 55;
    
      PilotTaintControllerConfig taint = 57;
    
      // If set, `istiod` will allow connections from trusted node proxy ztunnels
      // in the provided namespace.
      string trustedZtunnelNamespace = 59;
    }
    
    message PilotTaintControllerConfig {
      // Enable the untaint controller for new nodes. This aims to solve a race for CNI installation on 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. pkg/controller/tainteviction/taint_eviction_test.go

    		taintedNodes                  map[string][]corev1.Taint
    		expectPatch                   bool
    		expectDelete                  bool
    		enablePodDisruptionConditions bool
    	}{
    		{
    			description:  "not scheduled - ignore",
    			pod:          testutil.NewPod("pod1", ""),
    			taintedNodes: map[string][]corev1.Taint{},
    			expectDelete: false,
    		},
    		{
    			description:  "scheduled on untainted Node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    			node: nodeWithTaints("nodeA", []v1.Taint{{Key: "foo", Value: "bar", Effect: "NoSchedule"}}),
    			wantStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable,
    				"node(s) had untolerated taint {foo: bar}"),
    		},
    		{
    			name: "The pod has a toleration that keys and values match the taint on the node, the effect of toleration is empty, " +
    				"and the effect of taint is NoSchedule. Pod can be scheduled onto the node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. pkg/controller/controller_utils_test.go

    		nodeName       string
    		taintsToRemove []*v1.Taint
    		expectedTaints []v1.Taint
    		requestCount   int
    	}{
    		{
    			name: "remove one taint from node",
    			nodeHandler: &testutil.FakeNodeHandler{
    				Existing: []*v1.Node{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name: "node1",
    						},
    						Spec: v1.NodeSpec{
    							Taints: []v1.Taint{
    								{Key: "key1", Value: "value1", Effect: "NoSchedule"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			default:
    				// It seems that the Node is ready again, so there's no need to taint it.
    				logger.V(4).Info("Node was in a taint queue, but it's ready now. Ignoring taint request", "node", klog.KRef("", value.Value))
    				return true, 0
    			}
    			result := controllerutil.SwapNodeControllerTaint(ctx, nc.kubeClient, []*v1.Taint{&taintToAdd}, []*v1.Taint{&oppositeTaint}, node)
    			if result {
    				// Count the number of evictions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top