Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for AllowVolumeExpansion (0.77 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.StorageClass.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.StorageClass.yaml

    allowVolumeExpansion: true
    allowedTopologies:
    - matchLabelExpressions:
      - key: keyValue
        values:
        - valuesValue
    apiVersion: storage.k8s.io/v1
    kind: StorageClass
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.StorageClass.yaml

    allowVolumeExpansion: true
    allowedTopologies:
    - matchLabelExpressions:
      - key: keyValue
        values:
        - valuesValue
    apiVersion: storage.k8s.io/v1beta1
    kind: StorageClass
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.StorageClass.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types.go

    	// +listType=atomic
    	MountOptions []string `json:"mountOptions,omitempty" protobuf:"bytes,5,opt,name=mountOptions"`
    
    	// allowVolumeExpansion shows whether the storage class allow volume expand.
    	// +optional
    	AllowVolumeExpansion *bool `json:"allowVolumeExpansion,omitempty" protobuf:"varint,6,opt,name=allowVolumeExpansion"`
    
    	// volumeBindingMode indicates how PersistentVolumeClaims should be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    	if obj.VolumeBindingMode != nil {
    		volumeBindingMode = string(*obj.VolumeBindingMode)
    	}
    
    	allowVolumeExpansion := false
    	if obj.AllowVolumeExpansion != nil {
    		allowVolumeExpansion = *obj.AllowVolumeExpansion
    	}
    
    	row.Cells = append(row.Cells, name, provtype, reclaimPolicy, volumeBindingMode, allowVolumeExpansion,
    		translateTimestampSince(obj.CreationTimestamp))
    
    	return []metav1.TableRow{row}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    					Name:              "sc6",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(-3e11)},
    				},
    				Provisioner:          "kubernetes.io/nfs",
    				ReclaimPolicy:        &policyRetain,
    				AllowVolumeExpansion: boolP(true),
    				VolumeBindingMode:    &bindModeWait,
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"sc6", "kubernetes.io/nfs", "Retain",
    				"WaitForFirstConsumer", true, "5m"}}},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    										Type:    []string{"string"},
    										Format:  "",
    									},
    								},
    							},
    						},
    					},
    					"allowVolumeExpansion": {
    						SchemaProps: spec.SchemaProps{
    							Description: "allowVolumeExpansion shows whether the storage class allow volume expand.",
    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. api/openapi-spec/swagger.json

          "properties": {
            "allowVolumeExpansion": {
              "description": "allowVolumeExpansion shows whether the storage class allow volume expand.",
              "type": "boolean"
            },
            "allowedTopologies": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top