...

Source file src/k8s.io/apimachinery/pkg/apis/meta/internalversion/defaults.go

Documentation: k8s.io/apimachinery/pkg/apis/meta/internalversion

     1  /*
     2  Copyright 2023 The Kubernetes Authors.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  package internalversion
    18  
    19  import metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    20  
    21  // SetListOptionsDefaults sets defaults on the provided ListOptions if applicable.
    22  //
    23  // TODO(#115478): once the watch-list fg is always on we register this function in the scheme (via AddTypeDefaultingFunc).
    24  // TODO(#115478): when the function is registered in the scheme remove all callers of this method.
    25  func SetListOptionsDefaults(obj *ListOptions, isWatchListFeatureEnabled bool) {
    26  	if !isWatchListFeatureEnabled {
    27  		return
    28  	}
    29  	if obj.SendInitialEvents != nil || len(obj.ResourceVersionMatch) != 0 {
    30  		return
    31  	}
    32  	legacy := obj.ResourceVersion == "" || obj.ResourceVersion == "0"
    33  	if obj.Watch && legacy {
    34  		turnOnInitialEvents := true
    35  		obj.SendInitialEvents = &turnOnInitialEvents
    36  		obj.ResourceVersionMatch = metav1.ResourceVersionMatchNotOlderThan
    37  	}
    38  }
    39  

View as plain text