Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 106 for podB (0.04 sec)

  1. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"type":   "Specifies the required Pod condition type. To match a pod condition it is required that specified type equals the pod condition type.",
    	"status": "Specifies the required Pod condition status. To match a pod condition it is required that the specified status equals the pod condition status. Defaults to True.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. cmd/kube-scheduler/app/server.go

    	cmd := &cobra.Command{
    		Use: "kube-scheduler",
    		Long: `The Kubernetes scheduler is a control plane process which assigns
    Pods to Nodes. The scheduler determines which Nodes are valid placements for
    each Pod in the scheduling queue according to constraints and available
    resources. The scheduler then ranks each valid Node and binds the Pod to a
    suitable Node. Multiple different schedulers may be used within a cluster;
    kube-scheduler is the reference implementation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/types.go

    	// Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod
    	// (and cluster policy otherwise allows the traffic), OR if the traffic source is
    	// the pod's local node, OR if the traffic matches at least one ingress rule
    	// across all of the NetworkPolicy objects whose podSelector matches the pod. If
    	// this field is empty then this NetworkPolicy does not allow any traffic (and serves
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/preemption/preemption_test.go

    	tests := []struct {
    		name      string
    		nodeNames []string
    		pod       *v1.Pod
    		testPods  []*v1.Pod
    		expected  string
    	}{
    		{
    			name:      "pod has different number of containers on each node",
    			nodeNames: []string{"node1", "node2", "node3"},
    			pod:       st.MakePod().Name("p").UID("p").Priority(highPriority).Req(veryLargeRes).Obj(),
    			testPods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/apply.go

    func PerformControlPlaneUpgrade(flags *applyFlags, client clientset.Interface, waiter apiclient.Waiter, initCfg *kubeadmapi.InitConfiguration, upgradeCfg *kubeadmapi.UpgradeConfiguration) error {
    	// OK, the cluster is hosted using static pods. Upgrade a static-pod hosted cluster
    	fmt.Printf("[upgrade/apply] Upgrading your Static Pod-hosted control plane to version %q (timeout: %v)...\n",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. pkg/scheduler/scheduler.go

    	// See issue #106361 for more details about this parameter and its value.
    	durationToExpireAssumedPod time.Duration = 0
    )
    
    // ErrNoNodesAvailable is used to describe the error that no nodes available to schedule pods.
    var ErrNoNodesAvailable = fmt.Errorf("no nodes available to schedule pods")
    
    // Scheduler watches for new unscheduled pods. It attempts to find
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    		w.stopLocked()
    	}
    	initEvents := []*watchCacheEvent{
    		{Object: &v1.Pod{}},
    		{Object: &v1.Pod{}},
    	}
    	// set the size of the buffer of w.result to 0, so that the writes to
    	// w.result is blocked.
    	w = newCacheWatcher(0, filter, forget, storage.APIObjectVersioner{}, time.Now(), false, schema.GroupResource{Resource: "pods"}, "")
    	go w.processInterval(context.Background(), intervalFromEvents(initEvents), 0)
    	w.Stop()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/labels.go

    func newPodAnnotations(pod *v1.Pod) map[string]string {
    	return pod.Annotations
    }
    
    // newContainerLabels creates container labels from v1.Container and v1.Pod.
    func newContainerLabels(container *v1.Container, pod *v1.Pod) map[string]string {
    	labels := map[string]string{}
    	labels[types.KubernetesPodNameLabel] = pod.Name
    	labels[types.KubernetesPodNamespaceLabel] = pod.Namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. pkg/volume/downwardapi/downwardapi.go

    	if err != nil {
    		klog.Errorf("Error preparing data for downwardAPI volume %v for pod %v/%v: %s", b.volName, b.pod.Namespace, b.pod.Name, err.Error())
    		return err
    	}
    
    	setupSuccess := false
    	if err := wrapped.SetUpAt(dir, mounterArgs); err != nil {
    		klog.Errorf("Unable to setup downwardAPI volume %v for pod %v/%v: %s", b.volName, b.pod.Namespace, b.pod.Name, err.Error())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. cni/pkg/cmd/root.go

    	registerBooleanParameter(constants.RepairLabelPods, false, "Controller will label pods when detecting pod broken by race condition")
    	registerStringParameter(constants.RepairLabelKey, "cni.istio.io/uninitialized",
    		"The key portion of the label which will be set by the race repair if label pods is true")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top