Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for resourceClaimStatuses (0.26 sec)

  1. pkg/kubelet/status/status_manager.go

    					}
    				}
    			}
    		}
    	}
    	newPodStatus.Conditions = podConditions
    
    	// ResourceClaimStatuses is not owned and not modified by kubelet.
    	newPodStatus.ResourceClaimStatuses = oldPodStatus.ResourceClaimStatuses
    
    	// Delay transitioning a pod to a terminal status unless the pod is actually terminal.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			Name: podClaimName,
    			Source: corev1.ClaimSource{
    				ResourceClaimTemplateName: &claimTemplateName,
    			},
    		})
    		pod.Status.ResourceClaimStatuses = append(pod.Status.ResourceClaimStatuses, corev1.PodResourceClaimStatus{
    			Name:              podClaimName,
    			ResourceClaimName: &claimName,
    		})
    	}
    	// Choose shared pvcs randomly from shared pvcs in a namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

                "readOnly": true,
                "recursiveReadOnly": "recursiveReadOnlyValue"
              }
            ]
          }
        ],
        "resize": "resizeValue",
        "resourceClaimStatuses": [
          {
            "name": "nameValue",
            "resourceClaimName": "resourceClaimNameValue"
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

      nominatedNodeName: nominatedNodeNameValue
      phase: phaseValue
      podIP: podIPValue
      podIPs:
      - ip: ipValue
      qosClass: qosClassValue
      reason: reasonValue
      resize: resizeValue
      resourceClaimStatuses:
      - name: nameValue
        resourceClaimName: resourceClaimNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.json

              },
              "claims": [
                {
                  "name": "nameValue"
                }
              ]
            }
          }
        ],
        "resize": "resizeValue",
        "resourceClaimStatuses": [
          {
            "name": "nameValue",
            "resourceClaimName": "resourceClaimNameValue"
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  6. pkg/controller/resourceclaim/controller.go

    		if _, err := ec.kubeClient.CoreV1().Pods(namespace).ApplyStatus(ctx, podApply, metav1.ApplyOptions{FieldManager: fieldManager, Force: true}); err != nil {
    			return fmt.Errorf("update pod %s/%s ResourceClaimStatuses: %v", namespace, name, err)
    		}
    	}
    
    	if pod.Spec.NodeName == "" {
    		// Scheduler will handle PodSchedulingContext and reservations.
    		logger.V(5).Info("nothing to do for pod, scheduler will deal with it")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

      nominatedNodeName: nominatedNodeNameValue
      phase: phaseValue
      podIP: podIPValue
      podIPs:
      - ip: ipValue
      qosClass: qosClassValue
      reason: reasonValue
      resize: resizeValue
      resourceClaimStatuses:
      - name: nameValue
        resourceClaimName: resourceClaimNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

                "gid": 2,
                "supplementalGroups": [
                  3
                ]
              }
            }
          }
        ],
        "resize": "resizeValue",
        "resourceClaimStatuses": [
          {
            "name": "nameValue",
            "resourceClaimName": "resourceClaimNameValue"
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.yaml

      nominatedNodeName: nominatedNodeNameValue
      phase: phaseValue
      podIP: podIPValue
      podIPs:
      - ip: ipValue
      qosClass: qosClassValue
      reason: reasonValue
      resize: resizeValue
      resourceClaimStatuses:
      - name: nameValue
        resourceClaimName: resourceClaimNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 32.3K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    // except for pod.status.resourceClaimStatuses: changing that may have an
    // effect on scheduling.
    func isPodUpdated(oldPod, newPod *v1.Pod) bool {
    	strip := func(pod *v1.Pod) *v1.Pod {
    		p := pod.DeepCopy()
    		p.ResourceVersion = ""
    		p.Generation = 0
    		p.Status = v1.PodStatus{
    			ResourceClaimStatuses: pod.Status.ResourceClaimStatuses,
    		}
    		p.ManagedFields = nil
    		p.Finalizers = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top