mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
15 lines
298 B
Go
15 lines
298 B
Go
|
package openapi
|
||
|
|
||
|
import "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
||
|
|
||
|
func NewFake() ValidateInterface {
|
||
|
return &fakeValidation{}
|
||
|
}
|
||
|
|
||
|
type fakeValidation struct {
|
||
|
}
|
||
|
|
||
|
func (f *fakeValidation) ValidateResource(resource unstructured.Unstructured, apiVersion, kind string) error {
|
||
|
return nil
|
||
|
}
|