mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
31 lines
988 B
Go
31 lines
988 B
Go
package engine
|
|
|
|
import (
|
|
client "github.com/nirmata/kyverno/pkg/dclient"
|
|
kyverno "github.com/nirmata/kyverno/pkg/api/kyverno/v1"
|
|
authenticationv1 "k8s.io/api/authentication/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
)
|
|
|
|
// PolicyContext contains the contexts for engine to process
|
|
type PolicyContext struct {
|
|
// policy to be processed
|
|
Policy kyverno.ClusterPolicy
|
|
// resource to be processed
|
|
NewResource unstructured.Unstructured
|
|
// old Resource - Update operations
|
|
OldResource unstructured.Unstructured
|
|
AdmissionInfo RequestInfo
|
|
// Dynamic client - used by generate
|
|
Client *client.Client
|
|
}
|
|
|
|
// RequestInfo contains permission info carried in an admission request
|
|
type RequestInfo struct {
|
|
// Roles is a list of possible role send the request
|
|
Roles []string
|
|
// ClusterRoles is a list of possible clusterRoles send the request
|
|
ClusterRoles []string
|
|
// UserInfo is the userInfo carried in the admission request
|
|
AdmissionUserInfo authenticationv1.UserInfo
|
|
}
|