Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for attachDetachController (0.23 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/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. 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)
  4. 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)
  5. 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)
  6. pkg/controller/apis/config/v1alpha1/defaults.go

    	// Use the default RecommendedDefaultHPAControllerConfiguration options
    	attachdetachconfigv1alpha1.RecommendedDefaultAttachDetachControllerConfiguration(&obj.AttachDetachController)
    	// Use the default RecommendedDefaultCSRSigningControllerConfiguration options
    	csrsigningconfigv1alpha1.RecommendedDefaultCSRSigningControllerConfiguration(&obj.CSRSigningController)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 07:55:11 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top