Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for attachDetachController (0.29 sec)

  1. cmd/kube-controller-manager/app/options/attachdetachcontroller.go

    	attachdetachconfig "k8s.io/kubernetes/pkg/controller/volume/attachdetach/config"
    )
    
    // AttachDetachControllerOptions holds the AttachDetachController options.
    type AttachDetachControllerOptions struct {
    	*attachdetachconfig.AttachDetachControllerConfiguration
    }
    
    // AddFlags adds flags related to AttachDetachController for controller manager to the specified FlagSet.
    func (o *AttachDetachControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. 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)
  3. cmd/kube-controller-manager/app/options/options.go

    		ServiceController: &cpoptions.ServiceControllerOptions{
    			ServiceControllerConfiguration: &componentConfig.ServiceController,
    		},
    		AttachDetachController: &AttachDetachControllerOptions{
    			&componentConfig.AttachDetachController,
    		},
    		CSRSigningController: &CSRSigningControllerOptions{
    			&componentConfig.CSRSigningController,
    		},
    		DaemonSetController: &DaemonSetControllerOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  4. 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)
  5. pkg/controller/apis/config/v1alpha1/zz_generated.conversion.go

    		return err
    	}
    	if err := attachdetachconfigv1alpha1.Convert_v1alpha1_AttachDetachControllerConfiguration_To_config_AttachDetachControllerConfiguration(&in.AttachDetachController, &out.AttachDetachController, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/config/types.go

    limitations under the License.
    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // AttachDetachControllerConfiguration contains elements describing AttachDetachController.
    type AttachDetachControllerConfiguration struct {
    	// Reconciler runs a periodic loop to reconcile the desired state of the with
    	// the actual state of the world by triggering attach detach operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. pkg/controller/apis/config/types.go

    	// both in cloud controller manager and kube-controller manager.
    	KubeCloudShared cpconfig.KubeCloudSharedConfiguration
    
    	// AttachDetachControllerConfiguration holds configuration for
    	// AttachDetachController related features.
    	AttachDetachController attachdetachconfig.AttachDetachControllerConfiguration
    	// CSRSigningControllerConfiguration holds configuration for
    	// CSRSigningController related features.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/metrics/metrics.go

    const (
    	// Force detach reason is timeout
    	ForceDetachReasonTimeout = "timeout"
    	// Force detach reason is the node has an out-of-service taint
    	ForceDetachReasonOutOfService = "out-of-service"
    	attachDetachController        = "attach_detach_controller"
    )
    
    var (
    	inUseVolumeMetricDesc = metrics.NewDesc(
    		metrics.BuildFQName("", "storage_count", "attachable_volumes_in_use"),
    		"Measure number of volumes in use",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 10 06:30:05 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top