Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,686 for applyTo (0.11 sec)

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

    }
    
    // ApplyTo fills up EphemeralVolumeController config with options.
    func (o *EphemeralVolumeControllerOptions) ApplyTo(cfg *ephemeralvolumeconfig.EphemeralVolumeControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 25 13:36:57 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/deploymentcontroller.go

    }
    
    // ApplyTo fills up DeploymentController config with options.
    func (o *DeploymentControllerOptions) ApplyTo(cfg *deploymentconfig.DeploymentControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    	cfg.ConcurrentDeploymentSyncs = o.ConcurrentDeploymentSyncs
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 12:00:53 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/replicationcontroller.go

    }
    
    // ApplyTo fills up ReplicationController config with options.
    func (o *ReplicationControllerOptions) ApplyTo(cfg *replicationconfig.ReplicationControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    	cfg.ConcurrentRCSyncs = o.ConcurrentRCSyncs
    
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/deprecatedcontroller.go

    func (o *DeprecatedControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    }
    
    // ApplyTo fills up DeprecatedController config with options.
    func (o *DeprecatedControllerOptions) ApplyTo(cfg *kubectrlmgrconfig.DeprecatedControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 22 12:28:12 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/endpointcontroller.go

    }
    
    // ApplyTo fills up EndPointController config with options.
    func (o *EndpointControllerOptions) ApplyTo(cfg *endpointconfig.EndpointControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    	cfg.ConcurrentEndpointSyncs = o.ConcurrentEndpointSyncs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 24 09:36:53 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/podgccontroller.go

    }
    
    // ApplyTo fills up PodGCController config with options.
    func (o *PodGCControllerOptions) ApplyTo(cfg *podgcconfig.PodGCControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    	cfg.TerminatedPodGCThreshold = o.TerminatedPodGCThreshold
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/replicasetcontroller.go

    }
    
    // ApplyTo fills up ReplicaSetController config with options.
    func (o *ReplicaSetControllerOptions) ApplyTo(cfg *replicasetconfig.ReplicaSetControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    	cfg.ConcurrentRSSyncs = o.ConcurrentRSSyncs
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/upgrade/1.9.5-install.yaml.tar

    namespace: istio-system labels: istio.io/rev: 1-9-5 spec: configPatches: - applyTo: NETWORK_FILTER match: context: SIDECAR_INBOUND proxy: proxyVersion: '^1\.8.*' listener: {} patch: operation: INSERT_BEFORE value: name: istio.metadata_exchange typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange value: protocol: istio-peer-exchange - applyTo: CLUSTER match: context: SIDECAR_OUTBOUND proxy: proxyVersion: '^1\.8.*'...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/options/options.go

    	c.KubeConfig = kubeConfig
    
    	if err := o.SecureServing.ApplyTo(&c.SecureServing, &c.LoopbackClientConfig); err != nil {
    		return err
    	}
    	if o.SecureServing != nil && (o.SecureServing.BindPort != 0 || o.SecureServing.Listener != nil) {
    		if err := o.Authentication.ApplyTo(&c.Authentication, c.SecureServing, nil); err != nil {
    			return err
    		}
    		if err := o.Authorization.ApplyTo(&c.Authorization); err != nil {
    			return err
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/statefulsetcontroller.go

    }
    
    // ApplyTo fills up StatefulSetController config with options.
    func (o *StatefulSetControllerOptions) ApplyTo(cfg *statefulsetconfig.StatefulSetControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    	cfg.ConcurrentStatefulSetSyncs = o.ConcurrentStatefulSetSyncs
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 01 05:36:14 UTC 2019
    - 2K bytes
    - Viewed (0)
Back to top