1
0
mirror of https://github.com/ceph/ceph-csi.git synced 2025-06-14 18:53:35 +00:00

rebase: update K8s packages to v0.32.1

Update K8s packages in go.mod to v0.32.1

Signed-off-by: Praveen M <m.praveen@ibm.com>
This commit is contained in:
Praveen M
2025-01-16 09:41:46 +05:30
committed by mergify[bot]
parent 5aef21ea4e
commit 7eb99fc6c9
2442 changed files with 273386 additions and 47788 deletions
go.modgo.sum
vendor
cel.dev
github.com
JeffAshton
Microsoft
containerd
coreos
cyphar
distribution
docker
euank
go-kmsg-parser
go-openapi
godbus
golang
groupcache
google
btree
cadvisor
cel-go
go-cmp
imdario
karrick
mistifyio
moby
opencontainers
go.etcd.io
go.uber.org
golang.org
k8s.io
api
admissionregistration
apps
autoscaling
batch
certificates
coordination
core
resource
storage
apiextensions-apiserver
pkg
apis
apiextensions
features
apimachinery
apiserver
pkg
admission
apis
authentication
authorization
cel
endpoints
features
registry
server
storage
util
apihelpers
flowcontrol
request
version
plugin
pkg
authorizer
webhook
client-go
applyconfigurations
admissionregistration
apiserverinternal
apps
autoscaling
batch
certificates
coordination
core
v1
apparmorprofile.goattachedvolume.goazurediskvolumesource.gocapabilities.goclustertrustbundleprojection.gocomponentcondition.gocomponentstatus.goconfigmap.goconfigmapenvsource.goconfigmapkeyselector.goconfigmapprojection.goconfigmapvolumesource.gocontainerport.gocontainerresizepolicy.gocontainerstaterunning.gocontainerstateterminated.goemptydirvolumesource.goendpointport.goendpoints.goephemeralcontainer.goevent.goeventseries.gohostpathvolumesource.gohttpgetaction.goimagevolumesource.golimitrange.golimitrangeitem.goloadbalanceringress.gomodifyvolumestatus.gonamespace.gonamespacecondition.gonamespacespec.gonamespacestatus.gonode.gonodeaddress.gonodecondition.gonodeselectorrequirement.gonodestatus.gopersistentvolume.gopersistentvolumeclaim.gopersistentvolumeclaimcondition.gopersistentvolumeclaimspec.gopersistentvolumeclaimstatus.gopersistentvolumeclaimtemplate.gopersistentvolumespec.gopersistentvolumestatus.gopod.gopodaffinityterm.gopodcondition.gopodos.gopodreadinessgate.gopodsecuritycontext.gopodspec.gopodstatus.gopodtemplate.gopodtemplatespec.goportstatus.goprobe.goreplicationcontroller.goreplicationcontrollercondition.goresourcehealth.goresourcequota.goresourcequotaspec.goresourcequotastatus.goresourcerequirements.goresourcestatus.goscopedresourceselectorrequirement.goseccompprofile.gosecret.gosecretenvsource.gosecretkeyselector.gosecretprojection.goservice.goserviceaccount.goserviceport.gotaint.gotoleration.gotopologyspreadconstraint.govolume.govolumemount.govolumemountstatus.govolumeresourcerequirements.go
discovery
events
extensions
flowcontrol
imagepolicy
internal
meta
networking
node
policy
rbac
resource
scheduling
storage
storagemigration
utils.go
dynamic
features
gentype
informers
admissionregistration
apiserverinternal
apps
autoscaling
batch
certificates
coordination
core
discovery
events
extensions
flowcontrol
generic.go
networking
node
policy
rbac
resource
scheduling
storage
storagemigration
kubernetes
clientset.go
fake
scheme
typed
admissionregistration
apiserverinternal
apps
authentication
authorization
autoscaling
batch
certificates
coordination
core
discovery
events
extensions
flowcontrol
networking
node
policy
rbac
resource
scheduling
storage
storagemigration
listers
admissionregistration
apiserverinternal
apps
autoscaling
batch
certificates
coordination
core
discovery
events
extensions
flowcontrol
networking
node
policy
rbac
resource
scheduling
storage
storagemigration
metadata
openapi
rest
testing
tools
transport
util
cloud-provider
component-base
component-helpers
node
topology
resource
storage
controller-manager
pkg
features
leadermigration
config
cri-api
cri-client
csi-translation-lib
dynamic-resource-allocation
kube-openapi
pkg
builder3
util
kube-scheduler
kubectl
pkg
scale
util
podutils
kubelet
kubernetes
pkg
api
v1
apis
capabilities
controller
features
kubelet
apis
cadvisor
checkpointmanager
cm
.mockery.yamlOWNERS
admission
cgroup_manager_linux.gocgroup_manager_unsupported.gocgroup_v1_manager_linux.gocgroup_v2_manager_linux.gocontainer_manager.gocontainer_manager_linux.gocontainer_manager_stub.gocontainer_manager_unsupported.gocontainer_manager_windows.go
containermap
cpumanager
devicemanager
doc.go
dra
fake_container_manager.gofake_internal_container_lifecycle.gofake_pod_container_manager.gohelpers.gohelpers_linux.gohelpers_unsupported.gointernal_container_lifecycle.gointernal_container_lifecycle_linux.gointernal_container_lifecycle_unsupported.gointernal_container_lifecycle_windows.go
memorymanager
node_container_manager_linux.gopod_container_manager_linux.gopod_container_manager_stub.goqos_container_manager_linux.go
resourceupdates
topologymanager
types.go
util
config
container
events
eviction
kuberuntime
lifecycle
metrics
pluginmanager
stats
status
types
util
winstats
probe
scheduler
OWNERS
apis
backend
eventhandlers.goextender.go
framework
metrics
profile
schedule_one.goscheduler.go
util
security
util
volume
test
third_party
pod-security-admission
utils
modules.txt
sigs.k8s.io
apiserver-network-proxy
konnectivity-client

@ -0,0 +1,55 @@
/*
Copyright 2016 Euan Kemp
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 kmsgparser
import stdlog "log"
// Logger is a glog compatible logging interface
// The StandardLogger struct can be used to wrap a log.Logger from the golang
// "log" package to create a standard a logger fulfilling this interface as
// well.
type Logger interface {
Warningf(string, ...interface{})
Infof(string, ...interface{})
Errorf(string, ...interface{})
}
// StandardLogger adapts the "log" package's Logger interface to be a Logger
type StandardLogger struct {
*stdlog.Logger
}
func (s *StandardLogger) Warningf(fmt string, args ...interface{}) {
if s.Logger == nil {
return
}
s.Logger.Printf("[WARNING] "+fmt, args)
}
func (s *StandardLogger) Infof(fmt string, args ...interface{}) {
if s.Logger == nil {
return
}
s.Logger.Printf("[INFO] "+fmt, args)
}
func (s *StandardLogger) Errorf(fmt string, args ...interface{}) {
if s.Logger == nil {
return
}
s.Logger.Printf("[INFO] "+fmt, args)
}