Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 156 for ecsi (1.61 sec)

  1. pkg/volume/volume.go

    	// An abnormal volume does not meet these criteria.
    	// This field is OPTIONAL. Only some csi drivers which support NodeServiceCapability_RPC_VOLUME_CONDITION
    	// need to fill it.
    	Abnormal *bool
    
    	// The message describing the condition of the volume.
    	// This field is OPTIONAL. Only some csi drivers which support capability_RPC_VOLUME_CONDITION
    	// need to fill it.
    	Message *string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pkg/proxy/healthcheck/healthcheck_test.go

    	nodePortAddresses := proxyutil.NewNodePortAddresses(v1.IPv4Protocol, []string{})
    	proxyChecker := &fakeProxierHealthChecker{true}
    
    	hcsi := newServiceHealthServer("hostname", nil, listener, httpFactory, nodePortAddresses, proxyChecker)
    	hcs := hcsi.(*server)
    	if len(hcs.services) != 0 {
    		t.Errorf("expected 0 services, got %d", len(hcs.services))
    	}
    
    	// sync nothing
    	hcs.SyncServices(nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	corelisters "k8s.io/client-go/listers/core/v1"
    	storagelisters "k8s.io/client-go/listers/storage/v1"
    	"k8s.io/component-helpers/storage/ephemeral"
    	"k8s.io/component-helpers/storage/volume"
    	csitrans "k8s.io/csi-translation-lib"
    	csiplugins "k8s.io/csi-translation-lib/plugins"
    	"k8s.io/klog/v2"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/volumebinding/metrics"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/delete_test.go

    			expectedVolumes: []*v1.PersistentVolume{volumeWithAnnotation(volume.AnnMigratedTo, "pd.csi.storage.gke.io", volumeWithAnnotation(volume.AnnDynamicallyProvisioned,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/policy/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/policy/v1beta1";
    
    // AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.
    message AllowedCSIDriver {
      // Name is the registered name of the CSI driver
      optional string name = 1;
    }
    
    // AllowedFlexVolume represents a single Flexvolume that is allowed to be used.
    message AllowedFlexVolume {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. go.mod

    	k8s.io/controller-manager => ./staging/src/k8s.io/controller-manager
    	k8s.io/cri-api => ./staging/src/k8s.io/cri-api
    	k8s.io/cri-client => ./staging/src/k8s.io/cri-client
    	k8s.io/csi-translation-lib => ./staging/src/k8s.io/csi-translation-lib
    	k8s.io/dynamic-resource-allocation => ./staging/src/k8s.io/dynamic-resource-allocation
    	k8s.io/endpointslice => ./staging/src/k8s.io/endpointslice
    	k8s.io/kms => ./staging/src/k8s.io/kms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		// We rely on CSI node to translate in-tree PV to CSI.
    		{Event: framework.ClusterEvent{Resource: framework.CSINode, ActionType: framework.Add | framework.Update}},
    		// When CSIStorageCapacity is enabled, pods may become schedulable
    		// on CSI driver & storage capacity changes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumespec.go

    	b.StorageOS = value
    	return b
    }
    
    // WithCSI sets the CSI field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the CSI field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    	if !needsNameFromSpec {
    		// Check attach-ability of a volume only as a fallback to avoid calling
    		// FindAttachablePluginBySpec for CSI volumes - it needs a connection to the API server,
    		// but it may not be available at this stage of kubelet startup.
    		// All CSI volumes are device-mountable, so they won't reach this code.
    		attachablePlugin, err := rc.volumePluginMgr.FindAttachablePluginBySpec(volumeSpec)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_generator_test.go

    	"k8s.io/apimachinery/pkg/util/uuid"
    	fakeclient "k8s.io/client-go/kubernetes/fake"
    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/kubernetes/pkg/volume"
    	csitesting "k8s.io/kubernetes/pkg/volume/csi/testing"
    	volumetesting "k8s.io/kubernetes/pkg/volume/testing"
    	"k8s.io/kubernetes/pkg/volume/util"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top