Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for claimrefns (0.2 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

            user: userValue
          cinder:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
            volumeID: volumeIDValue
          claimRef:
            apiVersion: apiVersionValue
            fieldPath: fieldPathValue
            kind: kindValue
            name: nameValue
            namespace: namespaceValue
            resourceVersion: resourceVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.yaml

          namespace: namespaceValue
        user: userValue
      cinder:
        fsType: fsTypeValue
        readOnly: true
        secretRef:
          name: nameValue
          namespace: namespaceValue
        volumeID: volumeIDValue
      claimRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
        resourceVersion: resourceVersionValue
        uid: uidValue
      csi:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.VolumeAttachment.yaml

            user: userValue
          cinder:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
            volumeID: volumeIDValue
          claimRef:
            apiVersion: apiVersionValue
            fieldPath: fieldPathValue
            kind: kindValue
            name: nameValue
            namespace: namespaceValue
            resourceVersion: resourceVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1beta1.VolumeAttachment.json

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

            user: userValue
          cinder:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
            volumeID: volumeIDValue
          claimRef:
            apiVersion: apiVersionValue
            fieldPath: fieldPathValue
            kind: kindValue
            name: nameValue
            namespace: namespaceValue
            resourceVersion: resourceVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. pkg/controller/volume/expand/expand_controller.go

    	if err != nil {
    		logger.V(5).Info("Error getting Persistent Volume for PVC from informer", "pvcKey", key, "pvcUID", pvc.UID, "err", err)
    		return err
    	}
    
    	if pv.Spec.ClaimRef == nil || pvc.Namespace != pv.Spec.ClaimRef.Namespace || pvc.UID != pv.Spec.ClaimRef.UID {
    		err := fmt.Errorf("persistent Volume is not bound to PVC being updated : %s", key)
    		logger.V(4).Info("", "err", err)
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/graph.go

    	if pv.Spec.ClaimRef != nil {
    		pvVertex := g.getOrCreateVertex_locked(pvVertexType, "", pv.Name)
    
    		// since we don't know the other end of the pvc -> pod -> node chain (or it may not even exist yet), we can't decorate these edges with kubernetes node info
    		g.graph.SetEdge(simple.Edge{F: pvVertex, T: g.getOrCreateVertex_locked(pvcVertexType, pv.Spec.ClaimRef.Namespace, pv.Spec.ClaimRef.Name)})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/volume_manager_test.go

    				},
    			},
    			Spec: v1.PersistentVolumeSpec{
    				PersistentVolumeSource: v1.PersistentVolumeSource{
    					RBD: &v1.RBDPersistentVolumeSource{
    						RBDImage: "fake-device",
    					},
    				},
    				ClaimRef: &v1.ObjectReference{
    					Name:      claim.ObjectMeta.Name,
    					Namespace: claim.ObjectMeta.Namespace,
    				},
    				VolumeMode: &fs,
    			},
    		}
    		kubeClient := fake.NewSimpleClientset(node, pod, pv, claim)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top