Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 591 for Pods (2.28 sec)

  1. pkg/scheduler/framework/plugins/interpodaffinity/filtering.go

    type preFilterState struct {
    	// A map of topology pairs to the number of existing pods that has anti-affinity terms that match the "pod".
    	existingAntiAffinityCounts topologyToMatchedTermCount
    	// A map of topology pairs to the number of existing pods that match the affinity terms of the "pod".
    	affinityCounts topologyToMatchedTermCount
    	// A map of topology pairs to the number of existing pods that match the anti-affinity terms of the "pod".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. cluster/gce/gci/audit_policy_test.go

    		podMetrics      = resource("podmetrics", "default", "metrics.k8s.io")
    		nodeMetrics     = resource("nodemetrics", "", "metrics.k8s.io")
    		pods            = resource("pods", "default")
    		podStatus       = resource("pods", "default", "", "status")
    		secrets         = resource("secrets", "default")
    		tokenReviews    = resource("tokenreviews", "", "authentication.k8s.io")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

    	Resource string
    	// Subresource is the name of the subresource being requested.  This is a different resource, scoped to the parent resource, but it may have a different kind.
    	// For instance, /pods has the resource "pods" and the kind "Pod", while /pods/foo/status has the resource "pods", the sub resource "status", and the kind "Pod"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/storage/storage.go

    		err = storeerr.InterpretGetError(err, api.Resource("pods"), podID)
    		err = storeerr.InterpretUpdateError(err, api.Resource("pods"), podID)
    		if _, ok := err.(*errors.StatusError); !ok {
    			err = errors.NewConflict(api.Resource("pods/binding"), podID, err)
    		}
    	}
    	return
    }
    
    var _ = rest.Creater(&LegacyBindingREST{})
    
    // LegacyBindingREST implements the REST endpoint for binding pods to nodes when etcd is in use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	pod := newPod(namespace)
    	err = handler.Admit(context.TODO(), admission.NewAttributesRecord(&pod, nil, v1.SchemeGroupVersion.WithKind("Pod").GroupKind().WithVersion("version"), pod.Namespace, pod.Name, v1.Resource("pods").WithVersion("version"), "", admission.Create, &metav1.CreateOptions{}, false, nil), nil)
    	if err == nil {
    		actions := ""
    		for _, action := range mockClient.Actions() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// +optional
    	Group string
    	// Resources is a list of resources this rule applies to.
    	//
    	// For example:
    	// - `pods` matches pods.
    	// - `pods/log` matches the log subresource of pods.
    	// - `*` matches all resources and their subresources.
    	// - `pods/*` matches all subresources of pods.
    	// - `*/scale` matches all scale subresources.
    	//
    	// If wildcard is present, the validation rule will ensure resources do not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. security/pkg/server/ca/server_test.go

    			server, _ := New(c.ca, time.Duration(1), c.authenticators, multiClusterController)
    
    			var pods []runtime.Object
    			for _, p := range c.pods {
    				pods = append(pods, toPod(p, strings.HasPrefix(p.name, "ztunnel")))
    			}
    			client := kube.NewFakeClient(pods...)
    			stop := test.NewStop(t)
    			multiClusterController.Add("fake", client, stop)
    			client.RunAndWait(stop)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/types.go

    	// 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 May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			filterName:   azureDiskVolumeFilterType,
    			maxVols:      2,
    			test:         "two pods missing the same PV are counted towards the PV limit only once",
    		},
    		{
    			newPod:       anotherDeletedPVPod,
    			existingPods: []*v1.Pod{oneAzureDiskPod, deletedPVPod},
    			filterName:   azureDiskVolumeFilterType,
    			maxVols:      2,
    			test:         "two pods missing different PVs are counted towards the PV limit twice",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/informers_test.go

    	handlers := setupHandlers(ctx, client, server, "istio-system")
    	client.RunAndWait(ctx.Done())
    	pods := handlers.GetActiveAmbientPodSnapshot()
    
    	// Should only return pods with the annotation indicating they are actually redirected at this time,
    	// not pods that are just scheduled to be enrolled.
    	assert.Equal(t, len(pods), 1)
    	assert.Equal(t, pods[0], redirectedNotEnrolled)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top