Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for attachDetachController (0.76 sec)

  1. pkg/controller/volume/attachdetach/attach_detach_controller.go

    			}
    		}
    	}
    	return nil
    }
    
    var _ volume.VolumeHost = &attachDetachController{}
    var _ volume.AttachDetachVolumeHost = &attachDetachController{}
    
    func (adc *attachDetachController) CSINodeLister() storagelistersv1.CSINodeLister {
    	return adc.csiNodeLister
    }
    
    func (adc *attachDetachController) CSIDriverLister() storagelistersv1.CSIDriverLister {
    	return adc.csiDriverLister
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. pkg/controller/apis/config/zz_generated.deepcopy.go

    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.Generic.DeepCopyInto(&out.Generic)
    	out.KubeCloudShared = in.KubeCloudShared
    	out.AttachDetachController = in.AttachDetachController
    	out.CSRSigningController = in.CSRSigningController
    	out.DaemonSetController = in.DaemonSetController
    	out.DeploymentController = in.DeploymentController
    	out.StatefulSetController = in.StatefulSetController
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/core.go

    			controllerContext.ComponentConfig.AttachDetachController.DisableAttachDetachReconcilerSync,
    			controllerContext.ComponentConfig.AttachDetachController.ReconcilerSyncLoopPeriod.Duration,
    			controllerContext.ComponentConfig.AttachDetachController.DisableForceDetachOnTimeout,
    			attachdetach.DefaultTimerConfig,
    		)
    	if attachDetachControllerErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    )
    
    func createADC(t testing.TB, tCtx ktesting.TContext, fakeKubeClient *fake.Clientset,
    	informerFactory informers.SharedInformerFactory, plugins []volume.VolumePlugin) *attachDetachController {
    
    	adcObj, err := NewAttachDetachController(
    		tCtx,
    		fakeKubeClient,
    		informerFactory.Core().V1().Pods(),
    		informerFactory.Core().V1().Nodes(),
    		informerFactory.Core().V1().PersistentVolumeClaims(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    			},
    		},
    		ServiceController: &cpoptions.ServiceControllerOptions{
    			ServiceControllerConfiguration: &serviceconfig.ServiceControllerConfiguration{
    				ConcurrentServiceSyncs: 2,
    			},
    		},
    		AttachDetachController: &AttachDetachControllerOptions{
    			&attachdetachconfig.AttachDetachControllerConfiguration{
    				ReconcilerSyncLoopPeriod:          metav1.Duration{Duration: 30 * time.Second},
    				DisableAttachDetachReconcilerSync: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,KubeControllerManagerConfiguration,AttachDetachController
    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,KubeControllerManagerConfiguration,CSRSigningController
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  7. pkg/volume/plugins.go

    	VolumeAttachmentLister() storagelistersv1.VolumeAttachmentLister
    	// IsAttachDetachController is an interface marker to strictly tie AttachDetachVolumeHost
    	// to the attachDetachController
    	IsAttachDetachController() bool
    }
    
    // VolumeHost is an interface that plugins can use to access the kubelet.
    type VolumeHost interface {
    	// GetPluginDir returns the absolute path to a directory under which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/cloud-provider/config/v1alpha1.KubeCloudSharedConfiguration"),
    						},
    					},
    					"AttachDetachController": {
    						SchemaProps: spec.SchemaProps{
    							Description: "AttachDetachControllerConfiguration holds configuration for AttachDetachController related features.",
    							Default:     map[string]interface{}{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top