Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 95 for doExecute (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/testdata/pod.json

            "terminationGracePeriodSeconds": 30,
            "tolerations": [
                {
                    "effect": "NoExecute",
                    "key": "node.kubernetes.io/not-ready",
                    "operator": "Exists",
                    "tolerationSeconds": 300
                },
                {
                    "effect": "NoExecute",
                    "key": "node.kubernetes.io/unreachable",
                    "operator": "Exists",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 18 15:31:52 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  2. pkg/controller/tainteviction/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package tainteviction contains the logic implementing taint-based eviction
    // for Pods running on Nodes with NoExecute taints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 723 bytes
    - Viewed (0)
  3. cluster/addons/device-plugins/nvidia-gpu/daemonset.yaml

                nodeSelectorTerms:
                - matchExpressions:
                  - key: cloud.google.com/gke-accelerator
                    operator: Exists
          tolerations:
          - operator: "Exists"
            effect: "NoExecute"
          - operator: "Exists"
            effect: "NoSchedule"
          volumes:
          - name: device-plugin
            hostPath:
              path: /var/lib/kubelet/device-plugins
          - name: dev
            hostPath:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. cluster/addons/kube-proxy/kube-proxy-ds.yaml

          hostNetwork: true
          nodeSelector:
            kubernetes.io/os: linux
            node.kubernetes.io/kube-proxy-ds-ready: "true"
          tolerations:
          - operator: "Exists"
            effect: "NoExecute"
          - operator: "Exists"
            effect: "NoSchedule"
          containers:
          - name: kube-proxy
            image: {{pillar['kube_docker_registry']}}/kube-proxy-{{pillar['host_arch']}}:{{pillar['kube-proxy_docker_tag']}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 01:01:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/helper/taint.go

    // filter out the node taints that reject scheduling Pod on a Node.
    func DoNotScheduleTaintsFilterFunc() func(t *v1.Taint) bool {
    	return func(t *v1.Taint) bool {
    		// PodToleratesNodeTaints is only interested in NoSchedule and NoExecute taints.
    		return t.Effect == v1.TaintEffectNoSchedule || t.Effect == v1.TaintEffectNoExecute
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 10 01:04:30 UTC 2022
    - 1K bytes
    - Viewed (0)
  6. cluster/addons/ip-masq-agent/ip-masq-agent.yaml

                  - key: config
                    path: ip-masq-agent
          tolerations:
          - effect: NoSchedule
            operator: Exists
          - effect: NoExecute
            operator: Exists
          - key: "CriticalAddonsOnly"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/helper/taint_test.go

    	}{
    		{
    			name: "should include the taints with NoSchedule effect",
    			taint: &v1.Taint{
    				Effect: v1.TaintEffectNoSchedule,
    			},
    			expected: true,
    		},
    		{
    			name: "should include the taints with NoExecute effect",
    			taint: &v1.Taint{
    				Effect: v1.TaintEffectNoExecute,
    			},
    			expected: true,
    		},
    		{
    			name: "should not include the taints with PreferNoSchedule effect",
    			taint: &v1.Taint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 10 01:04:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. cluster/addons/metadata-proxy/gce/metadata-proxy.yaml

        spec:
          priorityClassName: system-node-critical
          serviceAccountName: metadata-proxy
          hostNetwork: true
          dnsPolicy: Default
          tolerations:
          - operator: "Exists"
            effect: "NoExecute"
          - operator: "Exists"
            effect: "NoSchedule"
          containers:
          - name: metadata-proxy
            image: registry.k8s.io/metadata-proxy:v0.1.12
            args: ["--addr=0.0.0.0:988"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

        spec:
          priorityClassName: system-cluster-critical
          tolerations:
            - key: "CriticalAddonsOnly"
              operator: "Exists"
            - operator: "Exists"
              effect: "NoExecute"
          nodeSelector:
            kubernetes.io/os: linux
          containers:
            - image: registry.k8s.io/kas-network-proxy/proxy-agent:v0.30.3
              name: konnectivity-agent
              command: ["/proxy-agent"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. cluster/gce/manifests/kube-proxy.manifest

      labels:
        tier: node
        component: kube-proxy
    spec:
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      tolerations:
      - operator: "Exists"
        effect: "NoExecute"
      - operator: "Exists"
        effect: "NoSchedule"
      containers:
      - name: kube-proxy
        image: {{pillar['kube_docker_registry']}}/kube-proxy-{{pillar['host_arch']}}:{{pillar['kube-proxy_docker_tag']}}
        resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top