Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for cephfs (0.12 sec)

  1. pkg/api/v1/persistentvolume/util_test.go

    			ClaimRef: &corev1.ObjectReference{Namespace: "claimrefns", Name: "claimrefname"},
    			PersistentVolumeSource: corev1.PersistentVolumeSource{
    				CephFS: &corev1.CephFSPersistentVolumeSource{
    					SecretRef: &corev1.SecretReference{
    						Name:      "Spec.PersistentVolumeSource.CephFS.SecretRef",
    						Namespace: "cephfs"}}}}},
    		{Spec: corev1.PersistentVolumeSpec{
    			ClaimRef: &corev1.ObjectReference{Namespace: "claimrefns", Name: "claimrefname"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. pkg/api/v1/persistentvolume/util.go

    			}
    		}
    		return true
    	case source.CephFS != nil:
    		if source.CephFS.SecretRef != nil {
    			// previously persisted PV objects use claimRef namespace
    			ns := getClaimRefNamespace(pv)
    			if len(source.CephFS.SecretRef.Namespace) > 0 {
    				// use the secret namespace if namespace is set
    				ns = source.CephFS.SecretRef.Namespace
    			}
    			if !visitor(ns, source.CephFS.SecretRef.Name, true /* kubeletVisible */) {
    				return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 05 03:36:23 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. pkg/api/persistentvolume/util_test.go

    			},
    		},
    		{
    			name: "PV CephFS deprecation warning",
    			template: &api.PersistentVolume{
    				Spec: api.PersistentVolumeSpec{
    					PersistentVolumeSource: api.PersistentVolumeSource{
    						CephFS: &api.CephFSPersistentVolumeSource{
    							Monitors:   nil,
    							Path:       "",
    							User:       "",
    							SecretFile: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumesource.go

    	Cinder               *CinderPersistentVolumeSourceApplyConfiguration     `json:"cinder,omitempty"`
    	CephFS               *CephFSPersistentVolumeSourceApplyConfiguration     `json:"cephfs,omitempty"`
    	FC                   *FCVolumeSourceApplyConfiguration                   `json:"fc,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 13.5K bytes
    - Viewed (0)
  5. pkg/api/persistentvolume/util.go

    		}
    	}
    	// If we are on deprecated volume plugin
    	if pvSpec.CephFS != nil {
    		warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.28, non-functional in v1.31+", fieldPath.Child("spec", "cephfs")))
    	}
    	if pvSpec.PhotonPersistentDisk != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 09:50:37 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. pkg/volume/validation/pv_validation.go

    		pv.Spec.AWSElasticBlockStore != nil ||
    		pv.Spec.Glusterfs != nil ||
    		pv.Spec.NFS != nil ||
    		pv.Spec.RBD != nil ||
    		pv.Spec.Quobyte != nil ||
    		pv.Spec.ISCSI != nil ||
    		pv.Spec.Cinder != nil ||
    		pv.Spec.CephFS != nil ||
    		pv.Spec.AzureFile != nil ||
    		pv.Spec.VsphereVolume != nil ||
    		pv.Spec.AzureDisk != nil ||
    		pv.Spec.PhotonPersistentDisk != nil {
    		return allErrs
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  7. pkg/api/v1/pod/util.go

    		switch {
    		case source.AzureFile != nil:
    			if len(source.AzureFile.SecretName) > 0 && !visitor(source.AzureFile.SecretName) {
    				return false
    			}
    		case source.CephFS != nil:
    			if source.CephFS.SecretRef != nil && !visitor(source.CephFS.SecretRef.Name) {
    				return false
    			}
    		case source.Cinder != nil:
    			if source.Cinder.SecretRef != nil && !visitor(source.Cinder.SecretRef.Name) {
    				return false
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.yaml

        kind: kindValue
        readOnly: true
      azureFile:
        readOnly: true
        secretName: secretNameValue
        secretNamespace: secretNamespaceValue
        shareName: shareNameValue
      capacity:
        capacityKey: "0"
      cephfs:
        monitors:
        - monitorsValue
        path: pathValue
        readOnly: true
        secretFile: secretFileValue
        secretRef:
          name: nameValue
          namespace: namespaceValue
        user: userValue
      cinder:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top