mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
b3021f5a57
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
15 lines
420 B
Go
15 lines
420 B
Go
package openapi
|
|
|
|
import (
|
|
openapiv2 "github.com/google/gnostic/openapiv2"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
)
|
|
|
|
type Manager interface {
|
|
UseOpenAPIDocument(*openapiv2.Document) error
|
|
DeleteCRDFromPreviousSync()
|
|
ParseCRD(unstructured.Unstructured)
|
|
UpdateKindToAPIVersions([]*metav1.APIResourceList, []*metav1.APIResourceList)
|
|
GetCrdList() []string
|
|
}
|