Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for PersistentVolumeClaims (0.34 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    )
    
    // +enum
    type PersistentVolumeClaimPhase string
    
    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
    - 390.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. CHANGELOG/CHANGELOG-1.17.md

    - local: support local filesystem volume with block resource reconstruction ([#84218](https://github.com/kubernetes/kubernetes/pull/84218), [@cofyc](https://github.com/cofyc))
    - Fixed binding of block PersistentVolumes / PersistentVolumeClaims when BlockVolume feature is off. ([#84049](https://github.com/kubernetes/kubernetes/pull/84049), [@jsafrane](https://github.com/jsafrane))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "string"
              },
              "volumeMode": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "default": "",
                "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": "readOnly Will force the ReadOnly setting in VolumeMounts. Default false.",
                "type": "boolean"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.22.md

    - Adds the `ReadWriteOncePod` access mode for `PersistentVolumes` and `PersistentVolumeClaims`. Restricts volume access to a single pod on a single node. ([#102028](https://github.com/kubernetes/kubernetes/pull/102028), [@chrishenzie](https://github.com/chrishenzie))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.14.md

    * fix: make azure disk URI as case insensitive ([#79020](https://github.com/kubernetes/kubernetes/pull/79020), [@andyzhangx](https://github.com/andyzhangx))
    * Fixed binding of block PersistentVolumes / PersistentVolumeClaims when BlockVolume feature is off. ([#84049](https://github.com/kubernetes/kubernetes/pull/84049), [@jsafrane](https://github.com/jsafrane))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
Back to top