mirror of
https://github.com/outbackdingo/kamaji.git
synced 2026-01-27 18:19:25 +00:00
18 lines
406 B
Go
18 lines
406 B
Go
// Copyright 2022 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package utils
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gomodules.xyz/jsonpatch/v2"
|
|
"sigs.k8s.io/controller-runtime/pkg/webhook/admission"
|
|
)
|
|
|
|
func NilOp() func(context.Context, admission.Request) ([]jsonpatch.JsonPatchOperation, error) {
|
|
return func(context.Context, admission.Request) ([]jsonpatch.JsonPatchOperation, error) {
|
|
return nil, nil
|
|
}
|
|
}
|