Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for volumeBindingMode (0.38 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"allowVolumeExpansion": "allowVolumeExpansion shows whether the storage class allow volume expand",
    	"volumeBindingMode":    "volumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound.  When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    				Name: immediateClass,
    			},
    			VolumeBindingMode: &immediateMode,
    		},
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: waitClass,
    			},
    			VolumeBindingMode: &waitMode,
    			Provisioner:       "kubernetes.io/no-provisioner",
    		},
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: topoMismatchClass,
    			},
    			VolumeBindingMode: &waitMode,
    			Provisioner:       provisioner,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // +optional
      optional bool allowVolumeExpansion = 6;
    
      // volumeBindingMode indicates how PersistentVolumeClaims should be
      // provisioned and bound.  When unset, VolumeBindingImmediate is used.
      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
      optional string volumeBindingMode = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    func (pl *VolumeBinding) EventsToRegister() []framework.ClusterEventWithHint {
    	events := []framework.ClusterEventWithHint{
    		// Pods may fail because of missing or mis-configured storage class
    		// (e.g., allowedTopologies, volumeBindingMode), and hence may become
    		// schedulable upon StorageClass Add or Update events.
    		{Event: framework.ClusterEvent{Resource: framework.StorageClass, ActionType: framework.Add | framework.Update}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    					Name:              "sc4",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(-3e11)},
    				},
    				Provisioner:       "kubernetes.io/nfs",
    				ReclaimPolicy:     &policyRetain,
    				VolumeBindingMode: &bindModeImmediate,
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"sc4", "kubernetes.io/nfs", "Retain",
    				"Immediate", false, "5m"}}},
    		},
    		{
    			sc: storage.StorageClass{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/binder_test.go

    			test:            testSyncClaim,
    		},
    	}
    	_, ctx := ktesting.NewTestContext(t)
    	runSyncTests(t, ctx, tests, []*storage.StorageClass{
    		{
    			ObjectMeta:        metav1.ObjectMeta{Name: classWait},
    			VolumeBindingMode: &modeWait,
    		},
    	}, []*v1.Pod{})
    }
    
    func TestSyncBlockVolume(t *testing.T) {
    	modeBlock := v1.PersistentVolumeBlock
    	modeFile := v1.PersistentVolumeFilesystem
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "string"
              },
              "volumeBindingMode": {
                "description": "volumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound.  When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"volumeBindingMode": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "string"
            },
            "volumeBindingMode": {
              "description": "volumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound.  When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

              "type": "string"
            },
            "volumeBindingMode": {
              "description": "volumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound.  When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.",
    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