Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 897 for Pods (0.06 sec)

  1. common-protos/k8s.io/api/node/v1beta1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. pkg/kubelet/container/testing/fake_runtime.go

    	f.Lock()
    	defer f.Unlock()
    
    	var pods []*kubecontainer.Pod
    
    	f.CalledFunctions = append(f.CalledFunctions, "GetPods")
    	if all {
    		for _, fakePod := range f.AllPodList {
    			pods = append(pods, fakePod.Pod)
    		}
    	} else {
    		for _, fakePod := range f.PodList {
    			pods = append(pods, fakePod.Pod)
    		}
    	}
    	return pods, f.Err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 00:23:50 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/generated.proto

    message NetworkPolicyPeer {
      // podSelector is a label selector which selects pods. This field follows standard label
      // selector semantics; if present but empty, it selects all pods.
      //
      // If namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects
      // the pods matching podSelector in the Namespaces selected by NamespaceSelector.
      // Otherwise it selects the pods matching podSelector in the policy's own namespace.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. pkg/controller/deployment/deployment_controller.go

    	// Get all Pods that potentially belong to this Deployment.
    	selector, err := metav1.LabelSelectorAsSelector(d.Spec.Selector)
    	if err != nil {
    		return nil, err
    	}
    	pods, err := dc.podLister.Pods(d.Namespace).List(selector)
    	if err != nil {
    		return nil, err
    	}
    	// Group Pods by their controller (if it's in rsList).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/runtime/runtime.go

    	return nil
    }
    
    // ListKubeContainers lists running k8s CRI pods
    func (runtime *CRIRuntime) ListKubeContainers() ([]string, error) {
    	ctx, cancel := defaultContext()
    	defer cancel()
    
    	sandboxes, err := runtime.impl.ListPodSandbox(ctx, runtime.runtimeService, nil)
    	if err != nil {
    		return nil, errors.Wrap(err, "failed to list pod sandboxes")
    	}
    
    	pods := []string{}
    	for _, sandbox := range sandboxes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/duplicate_mwc.yaml

          operator: NotIn
          values:
          - canary
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
        - v1
        operations:
        - CREATE
        resources:
        - pods
        scope: '*'
      sideEffects: None
      timeoutSeconds: 10
    ---
    # same webhook but with different name, will result in a duplicate
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. pkg/controller/controller_utils_test.go

    				Labels:    rc.Spec.Selector,
    				Namespace: rc.Namespace,
    			},
    			Status: v1.PodStatus{Phase: status},
    		}
    		if store != nil {
    			store.Add(&newPod)
    		}
    		pods = append(pods, newPod)
    	}
    	return &v1.PodList{
    		Items: pods,
    	}
    }
    
    func newReplicaSet(name string, replicas int, rsUuid types.UID) *apps.ReplicaSet {
    	return &apps.ReplicaSet{
    		TypeMeta: metav1.TypeMeta{APIVersion: "v1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/eastwest.go

    	if err := retry.UntilSuccess(func() error {
    		pods, err := cluster.Kube().CoreV1().Pods(i.cfg.SystemNamespace).List(context.TODO(), metav1.ListOptions{
    			LabelSelector: eastWestIngressIstioLabel,
    		})
    		if err != nil {
    			return err
    		}
    		for _, p := range pods.Items {
    			if p.Status.Phase == corev1.PodRunning {
    				return nil
    			}
    		}
    		return fmt.Errorf("no ready pods for " + eastWestIngressIstioLabel)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. pkg/scheduler/extender_test.go

    			nodeNameToVictims: map[string]*extenderv1.Victims{
    				"node1": {
    					Pods: []*v1.Pod{
    						st.MakePod().Name("pod1").UID("uid1").Obj(),
    						st.MakePod().Name("pod3").UID("uid3").Obj(),
    					},
    					NumPDBViolations: 1,
    				},
    				"node2": {
    					Pods: []*v1.Pod{
    						st.MakePod().Name("pod2").UID("uid2").Obj(),
    						st.MakePod().Name("pod4").UID("uid4").Obj(),
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/defaultbinder/default_binder.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    )
    
    // Name of the plugin used in the plugin registry and configurations.
    const Name = names.DefaultBinder
    
    // DefaultBinder binds pods to nodes using a k8s client.
    type DefaultBinder struct {
    	handle framework.Handle
    }
    
    var _ framework.BindPlugin = &DefaultBinder{}
    
    // New creates a DefaultBinder.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top