Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 124 for PersistentVolumeClaims (0.5 sec)

  1. pkg/apis/core/types.go

    // These are the valid value for PersistentVolumeClaimPhase
    const (
    	// used for PersistentVolumeClaims that are not yet bound
    	ClaimPending PersistentVolumeClaimPhase = "Pending"
    	// used for PersistentVolumeClaims that are bound
    	ClaimBound PersistentVolumeClaimPhase = "Bound"
    	// used for PersistentVolumeClaims that lost their underlying
    	// PersistentVolume. The claim was bound to a PersistentVolume and this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"status":   "status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
    }
    
    func (PersistentVolumeClaim) SwaggerDoc() map[string]string {
    	return map_PersistentVolumeClaim
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
      // +optional
      optional PersistentVolumeClaimSpec spec = 2;
    
      // status represents the current information/status of a persistent volume claim.
      // Read-only.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
      // +optional
      optional PersistentVolumeClaimStatus status = 3;
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    			informerFactory := informers.NewSharedInformerFactory(cs, 0)
    			for _, pvc := range test.pvcs {
    				metav1.SetMetaDataAnnotation(&pvc.ObjectMeta, volume.AnnBindCompleted, "true")
    				cs.CoreV1().PersistentVolumeClaims(pvc.Namespace).Create(ctx, &pvc, metav1.CreateOptions{})
    				if pvName := pvc.Spec.VolumeName; pvName != "" {
    					pv := v1.PersistentVolume{ObjectMeta: metav1.ObjectMeta{Name: pvName}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
      // +optional
      optional PersistentVolumeClaimSpec spec = 2;
    
      // status represents the current information/status of a persistent volume claim.
      // Read-only.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
      // +optional
      optional PersistentVolumeClaimStatus status = 3;
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

            "description": "VolumeAttributesClass represents a specification of mutable volume attributes defined by the CSI driver. The class can be specified during dynamic provisioning of PersistentVolumeClaims, and changed in the PersistentVolumeClaim spec after provisioning.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            "claimName": {
              "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
              "type": "string"
            },
            "readOnly": {
              "description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
              "type": "boolean"
            }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/api__v1_openapi.json

                ],
                "default": {},
                "description": "spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
              },
              "status": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimStatus"
                  }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

            },
            "status": {
              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimStatus",
              "description": "status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
            }
          },
          "type": "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top