Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for resourceClaimName (0.19 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.yaml

              readinessGates:
              - conditionType: conditionTypeValue
              resourceClaims:
              - name: nameValue
                source:
                  resourceClaimName: resourceClaimNameValue
                  resourceClaimTemplateName: resourceClaimTemplateNameValue
              restartPolicy: restartPolicyValue
              runtimeClassName: runtimeClassNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.yaml

          priority: 25
          priorityClassName: priorityClassNameValue
          readinessGates:
          - conditionType: conditionTypeValue
          resourceClaims:
          - name: nameValue
            source:
              resourceClaimName: resourceClaimNameValue
              resourceClaimTemplateName: resourceClaimTemplateNameValue
          restartPolicy: restartPolicyValue
          runtimeClassName: runtimeClassNameValue
          schedulerName: schedulerNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.yaml

          priority: 25
          priorityClassName: priorityClassNameValue
          readinessGates:
          - conditionType: conditionTypeValue
          resourceClaims:
          - name: nameValue
            source:
              resourceClaimName: resourceClaimNameValue
              resourceClaimTemplateName: resourceClaimTemplateNameValue
          restartPolicy: restartPolicyValue
          runtimeClassName: runtimeClassNameValue
          schedulerName: schedulerNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  4. pkg/controller/resourceclaim/controller.go

    		// generated ResourceClaims.
    		statuses := make([]*corev1apply.PodResourceClaimStatusApplyConfiguration, 0, len(newPodClaims))
    		for podClaimName, resourceClaimName := range newPodClaims {
    			statuses = append(statuses, corev1apply.PodResourceClaimStatus().WithName(podClaimName).WithResourceClaimName(resourceClaimName))
    		}
    		podApply := corev1apply.Pod(name, namespace).WithStatus(corev1apply.PodStatus().WithResourceClaimStatuses(statuses...))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	}
    	if claimSource.ResourceClaimName != nil {
    		for _, detail := range ValidateResourceClaimName(*claimSource.ResourceClaimName, false) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("resourceClaimName"), *claimSource.ResourceClaimName, detail))
    		}
    	}
    	if claimSource.ResourceClaimTemplateName != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. pkg/apis/core/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ClaimSource) DeepCopyInto(out *ClaimSource) {
    	*out = *in
    	if in.ResourceClaimName != nil {
    		in, out := &in.ResourceClaimName, &out.ResourceClaimName
    		*out = new(string)
    		**out = **in
    	}
    	if in.ResourceClaimTemplateName != nil {
    		in, out := &in.ResourceClaimTemplateName, &out.ResourceClaimTemplateName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
Back to top