mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-08-20 14:49:14 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the k8s-dependencies group in /e2e with 3 updates: [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery), [k8s.io/cloud-provider](https://github.com/kubernetes/cloud-provider) and [k8s.io/pod-security-admission](https://github.com/kubernetes/pod-security-admission). Updates `k8s.io/apimachinery` from 0.32.3 to 0.33.0 - [Commits](https://github.com/kubernetes/apimachinery/compare/v0.32.3...v0.33.0) Updates `k8s.io/cloud-provider` from 0.32.3 to 0.33.0 - [Commits](https://github.com/kubernetes/cloud-provider/compare/v0.32.3...v0.33.0) Updates `k8s.io/pod-security-admission` from 0.32.3 to 0.33.0 - [Commits](https://github.com/kubernetes/pod-security-admission/compare/v0.32.3...v0.33.0) --- updated-dependencies: - dependency-name: k8s.io/apimachinery dependency-version: 0.33.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies - dependency-name: k8s.io/cloud-provider dependency-version: 0.33.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies - dependency-name: k8s.io/pod-security-admission dependency-version: 0.33.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
109 lines
3.2 KiB
Go
109 lines
3.2 KiB
Go
/*
|
|
Copyright 2015 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
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 storage
|
|
|
|
import (
|
|
"fmt"
|
|
"sync/atomic"
|
|
|
|
"k8s.io/apimachinery/pkg/api/meta"
|
|
"k8s.io/apimachinery/pkg/api/validation/path"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
type SimpleUpdateFunc func(runtime.Object) (runtime.Object, error)
|
|
|
|
// SimpleUpdateFunc converts SimpleUpdateFunc into UpdateFunc
|
|
func SimpleUpdate(fn SimpleUpdateFunc) UpdateFunc {
|
|
return func(input runtime.Object, _ ResponseMeta) (runtime.Object, *uint64, error) {
|
|
out, err := fn(input)
|
|
return out, nil, err
|
|
}
|
|
}
|
|
|
|
func NamespaceKeyFunc(prefix string, obj runtime.Object) (string, error) {
|
|
meta, err := meta.Accessor(obj)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
name := meta.GetName()
|
|
if msgs := path.IsValidPathSegmentName(name); len(msgs) != 0 {
|
|
return "", fmt.Errorf("invalid name: %v", msgs)
|
|
}
|
|
return prefix + "/" + meta.GetNamespace() + "/" + name, nil
|
|
}
|
|
|
|
func NoNamespaceKeyFunc(prefix string, obj runtime.Object) (string, error) {
|
|
meta, err := meta.Accessor(obj)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
name := meta.GetName()
|
|
if msgs := path.IsValidPathSegmentName(name); len(msgs) != 0 {
|
|
return "", fmt.Errorf("invalid name: %v", msgs)
|
|
}
|
|
return prefix + "/" + name, nil
|
|
}
|
|
|
|
// HighWaterMark is a thread-safe object for tracking the maximum value seen
|
|
// for some quantity.
|
|
type HighWaterMark int64
|
|
|
|
// Update returns true if and only if 'current' is the highest value ever seen.
|
|
func (hwm *HighWaterMark) Update(current int64) bool {
|
|
for {
|
|
old := atomic.LoadInt64((*int64)(hwm))
|
|
if current <= old {
|
|
return false
|
|
}
|
|
if atomic.CompareAndSwapInt64((*int64)(hwm), old, current) {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
|
|
// AnnotateInitialEventsEndBookmark adds a special annotation to the given object
|
|
// which indicates that the initial events have been sent.
|
|
//
|
|
// Note that this function assumes that the obj's annotation
|
|
// field is a reference type (i.e. a map).
|
|
func AnnotateInitialEventsEndBookmark(obj runtime.Object) error {
|
|
objMeta, err := meta.Accessor(obj)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
objAnnotations := objMeta.GetAnnotations()
|
|
if objAnnotations == nil {
|
|
objAnnotations = map[string]string{}
|
|
}
|
|
objAnnotations[metav1.InitialEventsAnnotationKey] = "true"
|
|
objMeta.SetAnnotations(objAnnotations)
|
|
return nil
|
|
}
|
|
|
|
// HasInitialEventsEndBookmarkAnnotation checks the presence of the
|
|
// special annotation which marks that the initial events have been sent.
|
|
func HasInitialEventsEndBookmarkAnnotation(obj runtime.Object) (bool, error) {
|
|
objMeta, err := meta.Accessor(obj)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
objAnnotations := objMeta.GetAnnotations()
|
|
return objAnnotations[metav1.InitialEventsAnnotationKey] == "true", nil
|
|
}
|