Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AllowVolumeExpansion (1.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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