Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,686 for _default_ (0.4 sec)

  1. pkg/apis/apps/v1beta2/defaults.go

    			updateStrategy.RollingUpdate = &rollingUpdate
    		}
    		if updateStrategy.RollingUpdate.MaxUnavailable == nil {
    			// Set default MaxUnavailable as 1 by default.
    			updateStrategy.RollingUpdate.MaxUnavailable = ptr.To(intstr.FromInt32(1))
    		}
    		if updateStrategy.RollingUpdate.MaxSurge == nil {
    			// Set default MaxSurge as 0 by default.
    			updateStrategy.RollingUpdate.MaxSurge = ptr.To(intstr.FromInt32(0))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/testing/defaults/defaults.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package defaults
    
    import (
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    )
    
    // PluginsV1 is the set of default v1 plugins (before MultiPoint expansion)
    var PluginsV1 = &config.Plugins{
    	MultiPoint: config.PluginSet{
    		Enabled: []config.Plugin{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. pkg/log/default.go

    // limitations under the License.
    
    package log
    
    // These functions enable logging using a global Scope. See scope.go for usage information.
    
    func registerDefaultScopes() (defaults *Scope, grpc *Scope) {
    	return registerScope(DefaultScopeName, "Unscoped logging messages.", 1),
    		registerScope(GrpcScopeName, "logs from gRPC", 3)
    }
    
    var defaultScope, grpcScope = registerDefaultScopes()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. releasenotes/notes/default-container.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
      - 26764
    
    releaseNotes:
    - |
      **Improved** sidecar injection to automatically specify the `kubectl.kubernetes.io/default-logs-container`. This ensures `kubectl logs`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 346 bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/v1alpha1/defaults.go

    }
    
    // SetDefaults_ValidatingAdmissionPolicySpec sets defaults for ValidatingAdmissionPolicySpec
    func SetDefaults_ValidatingAdmissionPolicySpec(obj *admissionregistrationv1alpha1.ValidatingAdmissionPolicySpec) {
    	if obj.FailurePolicy == nil {
    		policy := admissionregistrationv1alpha1.Fail
    		obj.FailurePolicy = &policy
    	}
    }
    
    // SetDefaults_MatchResources sets defaults for MatchResources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/v1beta3/defaults.go

    limitations under the License.
    */
    
    package v1beta3
    
    import (
    	"k8s.io/api/flowcontrol/v1beta3"
    	"k8s.io/utils/ptr"
    )
    
    // Default settings for flow-schema
    const (
    	FlowSchemaDefaultMatchingPrecedence int32 = 1000
    )
    
    // Default settings for priority-level-configuration
    const (
    	PriorityLevelConfigurationDefaultHandSize                 int32 = 8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/v1beta2/defaults.go

    limitations under the License.
    */
    
    package v1beta2
    
    import (
    	"k8s.io/api/flowcontrol/v1beta2"
    )
    
    // Default settings for flow-schema
    const (
    	FlowSchemaDefaultMatchingPrecedence int32 = 1000
    )
    
    // Default settings for priority-level-configuration
    const (
    	PriorityLevelConfigurationDefaultHandSize                 int32 = 8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 00:47:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/v1/defaults.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	v1 "k8s.io/api/flowcontrol/v1"
    	"k8s.io/utils/ptr"
    )
    
    // Default settings for flow-schema
    const (
    	FlowSchemaDefaultMatchingPrecedence int32 = 1000
    )
    
    // Default settings for priority-level-configuration
    const (
    	PriorityLevelConfigurationDefaultHandSize                 int32 = 8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/v1beta1/defaults.go

    	}
    	if obj.ImageMinimumGCAge == zeroDuration {
    		obj.ImageMinimumGCAge = metav1.Duration{Duration: 2 * time.Minute}
    	}
    	if obj.ImageGCHighThresholdPercent == nil {
    		// default is below docker's default dm.min_free_space of 90%
    		obj.ImageGCHighThresholdPercent = utilpointer.Int32(85)
    	}
    	if obj.ImageGCLowThresholdPercent == nil {
    		obj.ImageGCLowThresholdPercent = utilpointer.Int32(80)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. pkg/apis/extensions/v1beta1/defaults.go

    		}
    		if updateStrategy.RollingUpdate.MaxUnavailable == nil {
    			// Set default MaxUnavailable as 1 by default.
    			maxUnavailable := intstr.FromInt32(1)
    			updateStrategy.RollingUpdate.MaxUnavailable = &maxUnavailable
    		}
    		if updateStrategy.RollingUpdate.MaxSurge == nil {
    			// Set default MaxSurge as 0 by default.
    			maxSurge := intstr.FromInt32(0)
    			updateStrategy.RollingUpdate.MaxSurge = &maxSurge
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top