Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PodSchedulingContexts (0.19 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    func (p *podSchedulingState) init(ctx context.Context, pod *v1.Pod, podSchedulingContextLister resourcev1alpha2listers.PodSchedulingContextLister) error {
    	schedulingCtx, err := podSchedulingContextLister.PodSchedulingContexts(pod.Namespace).Get(pod.Name)
    	switch {
    	case apierrors.IsNotFound(err):
    		return nil
    	case err != nil:
    		return err
    	default:
    		// We have an object, but it might be obsolete.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	require.NoError(t, err, "list claims")
    	for _, claim := range claims.Items {
    		claim := claim
    		objects = append(objects, &claim)
    	}
    	schedulings, err := tc.client.ResourceV1alpha2().PodSchedulingContexts("").List(tc.ctx, metav1.ListOptions{})
    	require.NoError(t, err, "list pod scheduling")
    	for _, scheduling := range schedulings.Items {
    		scheduling := scheduling
    		objects = append(objects, &scheduling)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. api/discovery/aggregated_v2.json

            "name": "resource.k8s.io"
          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "resource": "podschedulingcontexts",
                  "responseKind": {
                    "group": "",
                    "kind": "PodSchedulingContext",
                    "version": ""
                  },
                  "scope": "Namespaced",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. api/discovery/aggregated_v2beta1.json

            "name": "resource.k8s.io"
          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "resource": "podschedulingcontexts",
                  "responseKind": {
                    "group": "",
                    "kind": "PodSchedulingContext",
                    "version": ""
                  },
                  "scope": "Namespaced",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top