Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for doExecute (0.28 sec)

  1. CHANGELOG/CHANGELOG-1.6.md

    * fluentd will tolerate all NoExecute Taints when run in gcp configuration. ([#45715](https://github.com/kubernetes/kubernetes/pull/45715), [@gmarek](https://github.com/gmarek))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.7.md

      * Add generic Toleration for NoExecute Taints to NodeProblemDetector, so that NPD can be scheduled to nodes with NoExecute taints by default. ([#45883](https://github.com/kubernetes/kubernetes/pull/45883), [@gmarek](https://github.com/gmarek))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	Value string
    	// Required. The effect of the taint on pods
    	// that do not tolerate the taint.
    	// Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
    	Effect TaintEffect
    	// TimeAdded represents the time at which the taint was added.
    	// It is only written for NoExecute taints.
    	// +optional
    	TimeAdded *metav1.Time
    }
    
    // TaintEffect defines the effects of Taint
    type TaintEffect 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)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // Required. The effect of the taint on pods
      // that do not tolerate the taint.
      // Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
      optional string effect = 3;
    
      // TimeAdded represents the time at which the taint was added.
      // It is only written for NoExecute taints.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time timeAdded = 4;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"effect":    "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",
    	"timeAdded": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.",
    }
    
    func (Taint) SwaggerDoc() map[string]string {
    	return map_Taint
    }
    
    var map_Toleration = map[string]string{
    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. staging/src/k8s.io/api/core/v1/types.go

    	// that do not tolerate the taint.
    	// Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
    	Effect TaintEffect `json:"effect" protobuf:"bytes,3,opt,name=effect,casttype=TaintEffect"`
    	// TimeAdded represents the time at which the taint was added.
    	// It is only written for NoExecute taints.
    	// +optional
    	TimeAdded *metav1.Time `json:"timeAdded,omitempty" protobuf:"bytes,4,opt,name=timeAdded"`
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // Required. The effect of the taint on pods
      // that do not tolerate the taint.
      // Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
      optional string effect = 3;
    
      // TimeAdded represents the time at which the taint was added.
      // It is only written for NoExecute taints.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time timeAdded = 4;
    }
    
    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. CHANGELOG/CHANGELOG-1.9.md

        * - Update debian-iptables image for CVEs.
        * - Change chain name to IP-MASQ to be compatible with the
        * pre-injected masquerade rules.
    * Add NoSchedule/NoExecute tolerations to ip-masq-agent, ensuring it to be scheduled in all nodes except master. ([#66260](https://github.com/kubernetes/kubernetes/pull/66260), [@tanshanshan](https://github.com/tanshanshan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.10.md

    * Fix an issue where filesystems are not unmounted when a backend is not reachable and returns EIO. ([#67097](https://github.com/kubernetes/kubernetes/pull/67097), [@chakri-nelluri](https://github.com/chakri-nelluri))
    * Add NoSchedule/NoExecute tolerations to ip-masq-agent, ensuring it to be scheduled in all nodes except master. ([#66260](https://github.com/kubernetes/kubernetes/pull/66260), [@tanshanshan](https://github.com/tanshanshan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.12.md

    ### SIG Network
    
    - The ip-masq-agent will now be scheduled in all nodes except master due to NoSchedule/NoExecute tolerations. ([#66260](https://github.com/kubernetes/kubernetes/pull/66260), [@tanshanshan](https://github.com/tanshanshan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
Back to top