mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 16:30:19 +00:00
c1ee11261e
Bumps the k8s-dependencies group with 1 update in the / directory: [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime). Updates `sigs.k8s.io/controller-runtime` from 0.17.3 to 0.18.2 - [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases) - [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md) - [Commits](https://github.com/kubernetes-sigs/controller-runtime/compare/v0.17.3...v0.18.2) --- updated-dependencies: - dependency-name: sigs.k8s.io/controller-runtime dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
93 lines
3.4 KiB
Go
93 lines
3.4 KiB
Go
/*
|
|
Copyright 2018 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 admission
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/serializer"
|
|
"k8s.io/apimachinery/pkg/util/json"
|
|
)
|
|
|
|
// Decoder knows how to decode the contents of an admission
|
|
// request into a concrete object.
|
|
type Decoder interface {
|
|
// Decode decodes the inlined object in the AdmissionRequest into the passed-in runtime.Object.
|
|
// If you want decode the OldObject in the AdmissionRequest, use DecodeRaw.
|
|
// It errors out if req.Object.Raw is empty i.e. containing 0 raw bytes.
|
|
Decode(req Request, into runtime.Object) error
|
|
|
|
// DecodeRaw decodes a RawExtension object into the passed-in runtime.Object.
|
|
// It errors out if rawObj is empty i.e. containing 0 raw bytes.
|
|
DecodeRaw(rawObj runtime.RawExtension, into runtime.Object) error
|
|
}
|
|
|
|
// decoder knows how to decode the contents of an admission
|
|
// request into a concrete object.
|
|
type decoder struct {
|
|
codecs serializer.CodecFactory
|
|
}
|
|
|
|
// NewDecoder creates a decoder given the runtime.Scheme.
|
|
func NewDecoder(scheme *runtime.Scheme) Decoder {
|
|
if scheme == nil {
|
|
panic("scheme should never be nil")
|
|
}
|
|
return &decoder{codecs: serializer.NewCodecFactory(scheme)}
|
|
}
|
|
|
|
// Decode decodes the inlined object in the AdmissionRequest into the passed-in runtime.Object.
|
|
// If you want decode the OldObject in the AdmissionRequest, use DecodeRaw.
|
|
// It errors out if req.Object.Raw is empty i.e. containing 0 raw bytes.
|
|
func (d *decoder) Decode(req Request, into runtime.Object) error {
|
|
// we error out if rawObj is an empty object.
|
|
if len(req.Object.Raw) == 0 {
|
|
return fmt.Errorf("there is no content to decode")
|
|
}
|
|
return d.DecodeRaw(req.Object, into)
|
|
}
|
|
|
|
// DecodeRaw decodes a RawExtension object into the passed-in runtime.Object.
|
|
// It errors out if rawObj is empty i.e. containing 0 raw bytes.
|
|
func (d *decoder) DecodeRaw(rawObj runtime.RawExtension, into runtime.Object) error {
|
|
// NB(directxman12): there's a bug/weird interaction between decoders and
|
|
// the API server where the API server doesn't send a GVK on the embedded
|
|
// objects, which means the unstructured decoder refuses to decode. It
|
|
// also means we can't pass the unstructured directly in, since it'll try
|
|
// and call unstructured's special Unmarshal implementation, which calls
|
|
// back into that same decoder :-/
|
|
// See kubernetes/kubernetes#74373.
|
|
|
|
// we error out if rawObj is an empty object.
|
|
if len(rawObj.Raw) == 0 {
|
|
return fmt.Errorf("there is no content to decode")
|
|
}
|
|
if unstructuredInto, isUnstructured := into.(runtime.Unstructured); isUnstructured {
|
|
// unmarshal into unstructured's underlying object to avoid calling the decoder
|
|
var object map[string]interface{}
|
|
if err := json.Unmarshal(rawObj.Raw, &object); err != nil {
|
|
return err
|
|
}
|
|
unstructuredInto.SetUnstructuredContent(object)
|
|
return nil
|
|
}
|
|
|
|
deserializer := d.codecs.UniversalDeserializer()
|
|
return runtime.DecodeInto(deserializer, rawObj.Raw, into)
|
|
}
|