Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 473 for Pods (0.84 sec)

  1. cni/pkg/constants/constants.go

    	AmbientIPv6          = "ambient-ipv6"
    
    	// Repair
    	RepairEnabled            = "repair-enabled"
    	RepairDeletePods         = "repair-delete-pods"
    	RepairRepairPods         = "repair-repair-pods"
    	RepairLabelPods          = "repair-label-pods"
    	RepairLabelKey           = "repair-broken-pod-label-key"
    	RepairLabelValue         = "repair-broken-pod-label-value"
    	RepairNodeName           = "repair-node-name"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/node/v1/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// handler specifies the underlying runtime and configuration that the CRI
    	// implementation will use to handle pods of this class. The possible values
    	// are specific to the node & CRI configuration.  It is assumed that all
    	// handlers are available on every node, and handlers of the same name are
    	// equivalent on every node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string provider = 22;
    
      // The number of pods that can be unavailable during a rolling update of the CNI DaemonSet (see
      // `updateStrategy.rollingUpdate.maxUnavailable` here:
      // https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec).
      // May be specified as a number of pods or as a percent of the total number
      // of pods at the start of the update.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. pkg/kubelet/userns/userns_manager.go

    		Gids: gids,
    	}, nil
    }
    
    // CleanupOrphanedPodUsernsAllocations reconciliates the state of user namespace
    // allocations with the pods actually running. It frees any user namespace
    // allocation for orphaned pods.
    func (m *UsernsManager) CleanupOrphanedPodUsernsAllocations(pods []*v1.Pod, runningPods []*kubecontainer.Pod) error {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.UserNamespacesSupport) {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    			test:         "fits when node volume limit >= new pods CSI volume",
    			limitSource:  "node",
    		},
    		{
    			newPod:       csiEBSOneVolPod,
    			existingPods: []*v1.Pod{runningPod, csiEBSTwoVolPod},
    			filterName:   "csi",
    			maxVols:      2,
    			driverNames:  []string{ebsCSIDriverName},
    			test:         "doesn't when node volume limit <= pods CSI volume",
    			limitSource:  "node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/ephemeral/controller.go

    	// The common indexer does some prefiltering for us by
    	// limiting the list to those pods which reference
    	// the PVC.
    	objs, err := ec.podIndexer.ByIndex(common.PodPVCIndex, fmt.Sprintf("%s/%s", pvc.Namespace, pvc.Name))
    	if err != nil {
    		runtime.HandleError(fmt.Errorf("listing pods from cache: %v", err))
    		return
    	}
    	for _, obj := range objs {
    		ec.enqueuePod(obj)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    
    		expectSyncDaemonSets(t, manager, ds, podControl, 0, 0, 1)
    	}
    }
    
    // Controller should not create pods on nodes which have daemon pods, and should remove excess pods from nodes that have extra pods.
    func TestDealsWithExistingPods(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		ds := newDaemonSet("foo")
    		ds.Spec.UpdateStrategy = *strategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  8. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go

    		pods                             []*v1.Pod
    	}
    	tests := []struct {
    		name string
    		args args
    		want []podShutdownGroup
    	}{
    		{
    			name: "migrate config",
    			args: args{
    				shutdownGracePeriodByPodPriority: migrateConfig(300*time.Second /* shutdownGracePeriodRequested */, 120*time.Second /* shutdownGracePeriodCriticalPods */),
    				pods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/scheduling/v1/types.go

    	// value represents the integer value of this priority class. This is the actual priority that pods
    	// receive when they have the name of this class in their pod spec.
    	Value int32 `json:"value" protobuf:"bytes,2,opt,name=value"`
    
    	// globalDefault specifies whether this PriorityClass should be considered as
    	// the default priority for pods that do not have any priority class.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/preemption/preemption_test.go

    			},
    			expected: [][]Candidate{
    				{
    					&candidate{
    						victims: &extenderv1.Victims{
    							Pods: []*v1.Pod{st.MakePod().Name("p1").UID("p1").Node("node1").Priority(midPriority).Obj()},
    						},
    						name: "node1",
    					},
    					&candidate{
    						victims: &extenderv1.Victims{
    							Pods: []*v1.Pod{st.MakePod().Name("p2").UID("p2").Node("node2").Priority(midPriority).Obj()},
    						},
    						name: "node2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top