Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for untaint (0.15 sec)

  1. 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)
  2. pkg/apis/core/types.go

    	Preference NodeSelectorTerm
    }
    
    // Taint represents taint that can be applied to the node.
    // The node this Taint is attached to has the "effect" on
    // any pod that does not tolerate the Taint.
    type Taint struct {
    	// Required. The taint key to be applied to a node.
    	Key string
    	// Required. The taint value corresponding to the taint key.
    	// +optional
    	Value string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // The node this Taint is attached to has the "effect" on
    // any pod that does not tolerate the Taint.
    message Taint {
      // Required. The taint key to be applied to a node.
      optional string key = 1;
    
      // The taint value corresponding to the taint key.
      // +optional
      optional string value = 2;
    
      // Required. The effect of the taint on pods
      // that do not tolerate the taint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.6.md

      * Note that because any taints you might have created with Kubernetes 1.5 can only affect the scheduling of new pods (the `NoExecute` taint effect is introduced in 1.6), neither the master upgrade nor your running `kubectl taint` to re-create the taints will affect pods that are already running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_Taint = map[string]string{
    	"":          "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
    	"key":       "Required. The taint key to be applied to a node.",
    	"value":     "The taint value corresponding to the taint key.",
    	"effect":    "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.25.md

    - Kubeadm: only taint control plane nodes when the legacy "master" taint is present. This avoids the bug where "kubeadm upgrade" will re-taint a control plane  node with the new "control plane" taint even if the user explicitly untainted the node. ([#109840](https://github.com/kubernetes/kubernetes/pull/109840), [@neolit123](https://github.com/neolit123))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // The node this Taint is attached to has the "effect" on
    // any pod that does not tolerate the Taint.
    message Taint {
      // Required. The taint key to be applied to a node.
      optional string key = 1;
    
      // The taint value corresponding to the taint key.
      // +optional
      optional string value = 2;
    
      // Required. The effect of the taint on pods
      // that do not tolerate the taint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // The node this Taint is attached to has the "effect" on
    // any pod that does not tolerate the Taint.
    type Taint struct {
    	// Required. The taint key to be applied to a node.
    	Key string `json:"key" protobuf:"bytes,1,opt,name=key"`
    	// The taint value corresponding to the taint key.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Taint)(nil), (*core.Taint)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Taint_To_core_Taint(a.(*v1.Taint), b.(*core.Taint), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.Taint)(nil), (*v1.Taint)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.24.md

    - Kubeadm: only taint control plane nodes when the legacy "master" taint is present. This avoids a bug where "kubeadm upgrade" will re-taint a control plane node with the new "control plane" taint even if the user explicitly untainted the node. ([#109841](https://github.com/kubernetes/kubernetes/pull/109841), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top