Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,686 for _default_ (0.14 sec)

  1. pkg/volume/flexvolume/expander-defaults.go

    	klog.Warning(logPrefix(e.plugin), "using default expand for volume ", spec.Name(), ", to size ", newSize, " from ", oldSize)
    	return newSize, nil
    }
    
    // the defaults for NodeExpand return a generic resize indicator that will trigger the operation executor to go ahead with
    // generic filesystem resize
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 2K bytes
    - Viewed (0)
  2. pkg/kubelet/config/defaults.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // Defines sane defaults for the kubelet config.
    const (
    	DefaultKubeletPodsDirName                = "pods"
    	DefaultKubeletVolumesDirName             = "volumes"
    	DefaultKubeletVolumeSubpathsDirName      = "volume-subpaths"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 00:57:47 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. pkg/apis/scheduling/v1/defaults.go

    	v1 "k8s.io/api/scheduling/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    // SetDefaults_PriorityClass sets additional defaults compared to its counterpart
    // in extensions.
    func SetDefaults_PriorityClass(obj *v1.PriorityClass) {
    	if obj.PreemptionPolicy == nil {
    		preemptLowerPriority := apiv1.PreemptLowerPriority
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 10:11:23 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. pkg/apis/scheduling/v1alpha1/defaults.go

    	runtime "k8s.io/apimachinery/pkg/runtime"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    // SetDefaults_PriorityClass sets additional defaults compared to its counterpart
    // in extensions.
    func SetDefaults_PriorityClass(obj *v1alpha1.PriorityClass) {
    	if obj.PreemptionPolicy == nil {
    		preemptLowerPriority := apiv1.PreemptLowerPriority
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 10:11:23 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/v1/defaults.go

    	if obj.Spec.MinReplicas == nil {
    		obj.Spec.MinReplicas = pointer.Int32(1)
    	}
    
    	// NB: we apply a default for CPU utilization in conversion because
    	// we need access to the annotations to properly apply the default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 15 06:03:59 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. manifests/charts/base/templates/default.yaml

    {{- if not (eq .Values.defaultRevision "") }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: ValidatingWebhookConfiguration
    metadata:
      name: istiod-default-validator
      labels:
        app: istiod
        release: {{ .Release.Name }}
        istio: istiod
        istio.io/rev: {{ .Values.defaultRevision | quote }}
    webhooks:
      - name: validation.istio.io
        clientConfig:
          {{- if .Values.base.validationURL }}
          url: {{ .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/default.yaml

    {{- if .Values.global.configCluster }}
    {{- if not (eq .Values.defaultRevision "") }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: ValidatingWebhookConfiguration
    metadata:
      name: istiod-default-validator
      labels:
        app: istiod
        release: {{ .Release.Name }}
        istio: istiod
        istio.io/rev: {{ .Values.defaultRevision | quote }}
    webhooks:
      - name: validation.istio.io
        clientConfig:
          {{- if .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/defaults.go

    	}
    	if obj.PreserveUnknownFields == nil {
    		obj.PreserveUnknownFields = utilpointer.BoolPtr(true)
    	}
    }
    
    // SetDefaults_ServiceReference sets defaults for Webhook's ServiceReference
    func SetDefaults_ServiceReference(obj *ServiceReference) {
    	if obj.Port == nil {
    		obj.Port = utilpointer.Int32Ptr(443)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:41:26 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/defaults.go

    				obj.Default[key] = value.DeepCopy()
    			}
    		}
    		// If a default limit is specified, but the default request is not, default request to limit
    		for key, value := range obj.Default {
    			if _, exists := obj.DefaultRequest[key]; !exists {
    				obj.DefaultRequest[key] = value.DeepCopy()
    			}
    		}
    		// If a default request is not specified, but the min is provided, default request to the min
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/defaults.go

    		obj.Names.ListKind = obj.Names.Kind + "List"
    	}
    	if obj.Conversion == nil {
    		obj.Conversion = &CustomResourceConversion{
    			Strategy: NoneConverter,
    		}
    	}
    }
    
    // SetDefaults_ServiceReference sets defaults for Webhook's ServiceReference
    func SetDefaults_ServiceReference(obj *ServiceReference) {
    	if obj.Port == nil {
    		obj.Port = utilpointer.Int32Ptr(443)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 15 16:27:01 UTC 2019
    - 1.7K bytes
    - Viewed (0)
Back to top