Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 320 for persistentVolumeClaim (0.27 sec)

  1. helm/minio/templates/statefulset.yaml

            {{- end }}
      {{- if .Values.persistence.enabled }}
      volumeClaimTemplates:
        {{- if gt $drivesPerNode 1 }}
        {{- range $diskId := until $drivesPerNode}}
        - apiVersion: v1
          kind: PersistentVolumeClaim
          metadata:
            name: export-{{ $diskId }}
            {{- if $.Values.persistence.annotations }}
            annotations: {{- toYaml $.Values.persistence.annotations | nindent 10 }}
            {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 07:50:24 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			ephemeralEnabled: true,
    			extraClaims:      []v1.PersistentVolumeClaim{*conflictingClaim},
    			test:             "volume not owned",
    			wantStatus:       framework.AsStatus(errors.New("PVC test/abc-xyz was not created for pod test/abc (pod is not owner)")),
    		},
    		{
    			newPod:           ephemeralVolumePod,
    			ephemeralEnabled: true,
    			extraClaims:      []v1.PersistentVolumeClaim{*ephemeralClaim},
    			maxVols:          1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    	pv := &v1.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: pvName,
    			UID:  "pvuid",
    		},
    		Spec: v1.PersistentVolumeSpec{
    			ClaimRef:   &v1.ObjectReference{Name: pvcName},
    			VolumeMode: &volumeMode,
    		},
    	}
    	pvc := &v1.PersistentVolumeClaim{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: pvcName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/volume_manager_test.go

    // already attached to the node and bound to the claim used by the pod.
    func createObjects(pvMode, podMode v1.PersistentVolumeMode) (*v1.Node, *v1.Pod, *v1.PersistentVolume, *v1.PersistentVolumeClaim) {
    	node := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{Name: testHostname},
    		Status: v1.NodeStatus{
    			VolumesAttached: []v1.AttachedVolume{
    				{
    					Name:       "fake/fake-device",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/cache/snapshot.go

    	for _, pod := range pods {
    		if pod.Spec.NodeName == "" {
    			continue
    		}
    
    		for _, v := range pod.Spec.Volumes {
    			if v.PersistentVolumeClaim == nil {
    				continue
    			}
    
    			key := framework.GetNamespacedName(pod.Namespace, v.PersistentVolumeClaim.ClaimName)
    			usedPVCSet.Insert(key)
    		}
    	}
    	return usedPVCSet
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. pkg/apis/core/register.go

    		&ResourceQuotaList{},
    		&Namespace{},
    		&NamespaceList{},
    		&ServiceAccount{},
    		&ServiceAccountList{},
    		&Secret{},
    		&SecretList{},
    		&PersistentVolume{},
    		&PersistentVolumeList{},
    		&PersistentVolumeClaim{},
    		&PersistentVolumeClaimList{},
    		&PodAttachOptions{},
    		&PodLogOptions{},
    		&PodExecOptions{},
    		&PodPortForwardOptions{},
    		&PodProxyOptions{},
    		&ComponentStatus{},
    		&ComponentStatusList{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 13 11:36:48 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  7. pkg/controller/volume/common/common.go

    		pod, ok := obj.(*v1.Pod)
    		if !ok {
    			return []string{}, nil
    		}
    		keys := []string{}
    		for _, podVolume := range pod.Spec.Volumes {
    			claimName := ""
    			if pvcSource := podVolume.VolumeSource.PersistentVolumeClaim; pvcSource != nil {
    				claimName = pvcSource.ClaimName
    			} else if podVolume.VolumeSource.Ephemeral != nil {
    				claimName = ephemeral.VolumeClaimName(pod, &podVolume)
    			}
    			if claimName != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 11 18:54:20 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/register.go

    		&ResourceQuotaList{},
    		&Namespace{},
    		&NamespaceList{},
    		&Secret{},
    		&SecretList{},
    		&ServiceAccount{},
    		&ServiceAccountList{},
    		&PersistentVolume{},
    		&PersistentVolumeList{},
    		&PersistentVolumeClaim{},
    		&PersistentVolumeClaimList{},
    		&PodAttachOptions{},
    		&PodLogOptions{},
    		&PodExecOptions{},
    		&PodPortForwardOptions{},
    		&PodProxyOptions{},
    		&ComponentStatus{},
    		&ComponentStatusList{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 13 11:36:48 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/recycle_test.go

    	pendingPod.Name = "pendingPod"
    	pendingPod.Status.Phase = v1.PodPending
    	pendingPod.Spec.Volumes[0].PersistentVolumeClaim.ClaimName = "pendingClaim"
    
    	completedPod := runningPod.DeepCopy()
    	completedPod.Name = "completedPod"
    	completedPod.Status.Phase = v1.PodSucceeded
    	completedPod.Spec.Volumes[0].PersistentVolumeClaim.ClaimName = "completedClaim"
    
    	pods := []*v1.Pod{
    		runningPod,
    		pendingPod,
    		completedPod,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    }...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top