Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newoff (0.26 sec)

  1. pkg/apis/core/validation/validation.go

    func ValidateConfigMapUpdate(newCfg, oldCfg *core.ConfigMap) field.ErrorList {
    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, ValidateObjectMetaUpdate(&newCfg.ObjectMeta, &oldCfg.ObjectMeta, field.NewPath("metadata"))...)
    
    	if oldCfg.Immutable != nil && *oldCfg.Immutable {
    		if newCfg.Immutable == nil || !*newCfg.Immutable {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top