Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 329 for accessmodes (0.31 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      accessModes:
      - accessModesValue
      dataSource:
        apiGroup: apiGroupValue
        kind: kindValue
        name: nameValue
      dataSourceRef:
        apiGroup: apiGroupValue
        kind: kindValue
        name: nameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolumeClaim.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      accessModes:
      - accessModesValue
      dataSource:
        apiGroup: apiGroupValue
        kind: kindValue
        name: nameValue
      dataSourceRef:
        apiGroup: apiGroupValue
        kind: kindValue
        name: nameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "accessModes": [
          "accessModesValue"
        ],
        "selector": {
          "matchLabels": {
            "matchLabelsKey": "matchLabelsValue"
          },
          "matchExpressions": [
            {
              "key": "keyValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. helm/minio/templates/pvc.yaml

        heritage: {{ .Release.Service }}
      {{- if .Values.persistence.annotations }}
      annotations: {{- toYaml .Values.persistence.annotations | nindent 4 }}
      {{- end }}
    spec:
      accessModes:
        - {{ .Values.persistence.accessMode | quote }}
      resources:
        requests:
          storage: {{ .Values.persistence.size | quote }}
      {{- if .Values.persistence.storageClass }}
      {{- if (eq "-" .Values.persistence.storageClass) }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 30 06:59:40 UTC 2023
    - 1014 bytes
    - Viewed (0)
  5. hack/testdata/prune-reap/b.yml

    kind: PersistentVolumeClaim
    apiVersion: v1
    metadata:
      name: b-pvc
    spec:
      accessModes:
        - ReadWriteOnce
      resources:
        requests:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 22:04:38 UTC 2016
    - 154 bytes
    - Viewed (0)
  6. hack/testdata/prune-reap/a.yml

    kind: PersistentVolumeClaim
    apiVersion: v1
    metadata:
      name: a-pvc
    spec:
      accessModes:
        - ReadWriteOnce
      resources:
        requests:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 22:04:38 UTC 2016
    - 154 bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_mounter_test.go

    	}{
    		{
    			name: "default fstype, with no fsgroup (should not apply fsgroup)",
    			accessModes: []corev1.PersistentVolumeAccessMode{
    				corev1.ReadWriteOnce,
    			},
    			readOnly: false,
    			fsType:   "",
    		},
    		{
    			name: "default fstype  with fsgroup (should not apply fsgroup)",
    			accessModes: []corev1.PersistentVolumeAccessMode{
    				corev1.ReadWriteOnce,
    			},
    			readOnly:   false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  8. pkg/volume/csi/expander.go

    		// DeviceMountPath does not get populated in resizeOptions.DeviceMountPath
    		opts.volumePath = resizeOptions.DevicePath
    		opts.fsType = fsTypeBlockName
    	}
    
    	if pv.Spec.AccessModes != nil {
    		opts.accessMode = pv.Spec.AccessModes[0]
    	}
    
    	_, err = csClient.NodeExpandVolume(ctx, opts)
    	if err != nil {
    		if inUseError(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. pkg/volume/validation/pv_validation_test.go

    			volume: testVolumeWithMountOption("good-nfs-mount-volume", "", "ro,nfsvers=3", api.PersistentVolumeSpec{
    				Capacity: api.ResourceList{
    					api.ResourceName(api.ResourceStorage): resource.MustParse("10G"),
    				},
    				AccessModes: []api.PersistentVolumeAccessMode{api.ReadWriteOnce},
    				PersistentVolumeSource: api.PersistentVolumeSource{
    					NFS: &api.NFSVolumeSource{Server: "localhost", Path: "/srv", ReadOnly: false},
    				},
    			}),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_block.go

    		}
    	}
    
    	//TODO (vladimirvivien) implement better AccessModes mapping between k8s and CSI
    	accessMode := v1.ReadWriteOnce
    	if m.spec.PersistentVolume.Spec.AccessModes != nil {
    		accessMode = m.spec.PersistentVolume.Spec.AccessModes[0]
    	}
    
    	ctx, cancel := context.WithTimeout(context.Background(), csiTimeout)
    	defer cancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top